Skip to content

Commit

Permalink
ceph-monstore-tool: correct the key for storing mgr_command_descs
Browse files Browse the repository at this point in the history
Fixes: https://tracker.ceph.com/issues/43582
Signed-off-by: Kefu Chai <kchai@redhat.com>
  • Loading branch information
tchaikov committed Feb 10, 2020
1 parent 4b3df5a commit a5bfeca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/ceph_monstore_tool.cc
Expand Up @@ -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);
}
Expand Down

0 comments on commit a5bfeca

Please sign in to comment.