From: Ilya Dryomov Date: Sat, 5 Mar 2022 08:59:36 +0000 (+0100) Subject: rbd: fix a typo in "rbd trash purge schedule ls" formatted output X-Git-Tag: v17.2.0~43^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f37d0f13df07d2753c3a3d080b2cd7bd13755ae9;p=ceph.git rbd: fix a typo in "rbd trash purge schedule ls" formatted output Signed-off-by: Ilya Dryomov (cherry picked from commit beffb7f9c6a4a19b6c4cfb65d04386575af50961) --- diff --git a/src/tools/rbd/action/TrashPurgeSchedule.cc b/src/tools/rbd/action/TrashPurgeSchedule.cc index c07ff8a0da02..5c133c295804 100644 --- a/src/tools/rbd/action/TrashPurgeSchedule.cc +++ b/src/tools/rbd/action/TrashPurgeSchedule.cc @@ -98,7 +98,7 @@ public: for (auto &item : scheduled) { f->open_object_section("item"); f->dump_string("pool", item.pool_name); - f->dump_string("namespce", item.namespace_name); + f->dump_string("namespace", item.namespace_name); f->dump_string("schedule_time", item.schedule_time); f->close_section(); // item }