]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: fix kvstore type in mon compact command 15954/head
authorliuchang0812 <liuchang0812@gmail.com>
Tue, 27 Jun 2017 15:49:29 +0000 (23:49 +0800)
committerliuchang0812 <liuchang0812@gmail.com>
Wed, 28 Jun 2017 08:08:19 +0000 (16:08 +0800)
Signed-off-by: liuchang0812 <liuchang0812@gmail.com>
src/mon/Monitor.cc

index 9a7304fcab41be15130b3469e32d32c8733de436..4d3525766e975c3fa68fad14a06cd8c3c00c5bec 100644 (file)
@@ -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<std::string>("mon_keyvaluedb") << " in " << end << " seconds";
     rs = oss.str();
     r = 0;
   }