From: liuchang0812 Date: Tue, 27 Jun 2017 15:49:29 +0000 (+0800) Subject: mon: fix kvstore type in mon compact command X-Git-Tag: ses5-milestone8~1^2~9^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F15954%2Fhead;p=ceph.git mon: fix kvstore type in mon compact command Signed-off-by: liuchang0812 --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index 9a7304fcab41..4d3525766e97 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -3026,7 +3026,7 @@ void Monitor::handle_command(MonOpRequestRef op) end -= start; dout(1) << "finished manual compaction in " << end << " seconds" << dendl; ostringstream oss; - oss << "compacted leveldb in " << end; + oss << "compacted " << g_conf->get_val("mon_keyvaluedb") << " in " << end << " seconds"; rs = oss.str(); r = 0; }