From e23e2dd9bfc3abc717e4c3e9364e193f4d236c63 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 26 Sep 2021 03:35:30 -0400 Subject: [PATCH] Fix typo in log message --- node-daemon/pvcnoded/objects/CephInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcnoded/objects/CephInstance.py b/node-daemon/pvcnoded/objects/CephInstance.py index 1cef66fd..3ee278a8 100644 --- a/node-daemon/pvcnoded/objects/CephInstance.py +++ b/node-daemon/pvcnoded/objects/CephInstance.py @@ -319,7 +319,7 @@ class CephOSDInstance(object): return False # 1. Create an empty partition table - logger.out('Creating partitons on block device {}'.format(device), state='i') + logger.out('Creating partitions on block device {}'.format(device), state='i') retcode, stdout, stderr = common.run_os_command( 'sgdisk --clear {}'.format(device) )