Skip to content

Commit

Permalink
Merge pull request ceph#45117 from idryomov/wip-rbd-trash-purge-error…
Browse files Browse the repository at this point in the history
…-typo

mgr/rbd_support: fix a typo in the error message

Reviewed-by: Sunny Kumar <[email protected]>
  • Loading branch information
idryomov authored Feb 22, 2022
2 parents efc4a8f + 5b37986 commit 76ad859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pybind/mgr/rbd_support/trash_purge_schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def trash_purge(self, pool_id: str, namespace: str) -> None:
ioctx.set_namespace(namespace)
rbd.RBD().trash_purge(ioctx, datetime.now())
except Exception as e:
self.log.error("exception when purgin {}/{}: {}".format(
self.log.error("exception when purging {}/{}: {}".format(
pool_id, namespace, e))

def init_schedule_queue(self) -> None:
Expand Down

0 comments on commit 76ad859

Please sign in to comment.