From: Kefu Chai Date: Mon, 10 Feb 2020 09:33:26 +0000 (+0800) Subject: ceph-monstore-tool: correct the key for storing mgr_command_descs X-Git-Tag: v15.1.1~475^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a5bfeca64f3204142fda5320b4fd403df4b5f532;p=ceph.git ceph-monstore-tool: correct the key for storing mgr_command_descs Fixes: https://tracker.ceph.com/issues/43582 Signed-off-by: Kefu Chai --- 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); }