Fix missing fstring
This commit is contained in:
parent
80a7fd6195
commit
f08c654f22
|
@ -887,7 +887,7 @@ class CephOSDInstance(object):
|
||||||
raise Exception
|
raise Exception
|
||||||
|
|
||||||
# 2. Wait for the OSD to be safe to remove (but don't wait for rebalancing to complete)
|
# 2. Wait for the OSD to be safe to remove (but don't wait for rebalancing to complete)
|
||||||
logger.out("Waiting for OSD {osd_id} to be safe to remove", state="i")
|
logger.out(f"Waiting for OSD {osd_id} to be safe to remove", state="i")
|
||||||
while True:
|
while True:
|
||||||
retcode, stdout, stderr = common.run_os_command(
|
retcode, stdout, stderr = common.run_os_command(
|
||||||
f"ceph osd safe-to-destroy osd.{osd_id}"
|
f"ceph osd safe-to-destroy osd.{osd_id}"
|
||||||
|
|
Loading…
Reference in New Issue