From: Sage Weil Date: Fri, 31 May 2013 21:53:19 +0000 (-0700) Subject: mon/MonmapMonitor: fix typo in check to remove mkfs info X-Git-Tag: v0.66~47^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7229da8a4d593490fd35f19d96c47c4a414c3e4a;p=ceph.git mon/MonmapMonitor: fix typo in check to remove mkfs info Signed-off-by: Sage Weil --- diff --git a/src/mon/MonmapMonitor.cc b/src/mon/MonmapMonitor.cc index cfc7bf7f2975..92bc5f2b1043 100644 --- a/src/mon/MonmapMonitor.cc +++ b/src/mon/MonmapMonitor.cc @@ -109,7 +109,7 @@ void MonmapMonitor::update_from_paxos(bool *need_bootstrap) dout(10) << "update_from_paxos got " << version << dendl; mon->monmap->decode(monmap_bl); - if (exists_key("mfks", get_service_name())) { + if (exists_key("mkfs", get_service_name())) { MonitorDBStore::Transaction t; erase_mkfs(&t); mon->store->apply_transaction(t);