From a5bfeca64f3204142fda5320b4fd403df4b5f532 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 10 Feb 2020 17:33:26 +0800 Subject: [PATCH] ceph-monstore-tool: correct the key for storing mgr_command_descs Fixes: https://tracker.ceph.com/issues/43582 Signed-off-by: Kefu Chai --- src/tools/ceph_monstore_tool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/ceph_monstore_tool.cc b/src/tools/ceph_monstore_tool.cc index df097d327593..d7169582b333 100644 --- a/src/tools/ceph_monstore_tool.cc +++ b/src/tools/ceph_monstore_tool.cc @@ -633,7 +633,7 @@ static int update_mgrmap(MonitorDBStore& st) } bufferlist bl; encode(mgr_command_descs, bl); - t->put("mgr_command_desc", "", bl); + t->put("mgr_command_descs", "", bl); } return st.apply_transaction(t); } -- 2.47.3