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: v16.2.8~79^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1645963541ff69694b94ad9e8f755d75058aa5d8;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 c07ff8a0da02a..5c133c2958049 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 }