From: Kefu Chai Date: Wed, 3 Apr 2019 10:03:06 +0000 (+0800) Subject: ceph-monstore-tool: fix a typo in error message X-Git-Tag: v15.1.0~3008^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=148e43ba50858a44bf4795ec273f5bba81a800da;p=ceph.git ceph-monstore-tool: fix a typo in error message Signed-off-by: Kefu Chai --- diff --git a/src/tools/ceph_monstore_tool.cc b/src/tools/ceph_monstore_tool.cc index cb723c2368e8..80c3aa7538f0 100644 --- a/src/tools/ceph_monstore_tool.cc +++ b/src/tools/ceph_monstore_tool.cc @@ -559,7 +559,7 @@ static int update_creating_pgs(MonitorDBStore& st) auto last_osdmap_epoch = st.get("osdmap", "last_committed"); int r = st.get("osdmap", st.combine_strings("full", last_osdmap_epoch), bl); if (r < 0) { - cerr << "unable to losd osdmap e" << last_osdmap_epoch << std::endl; + cerr << "unable to load osdmap e" << last_osdmap_epoch << std::endl; return r; }