Fix missing fstring

This commit is contained in:
Joshua Boniface 2023-11-01 21:41:06 -04:00
parent 80a7fd6195
commit f08c654f22
1 changed files with 1 additions and 1 deletions

View File

@ -887,7 +887,7 @@ class CephOSDInstance(object):
raise Exception
# 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:
retcode, stdout, stderr = common.run_os_command(
f"ceph osd safe-to-destroy osd.{osd_id}"