diff options
author | Sage Weil <sage@inktank.com> | 2013-05-31 14:53:19 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-06-17 14:24:45 -0700 |
commit | f33f80daf797cd2c219dde13990da5d475f14966 (patch) | |
tree | 23b6d915dc3f1f3928141054a1e4189a0280cf23 | |
parent | 796bb4e39791028e9c25a7a4b81f9466f133dec0 (diff) | |
download | ceph-f33f80daf797cd2c219dde13990da5d475f14966.tar.gz |
mon/MonmapMonitor: fix typo in check to remove mkfs info
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/mon/MonmapMonitor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mon/MonmapMonitor.cc b/src/mon/MonmapMonitor.cc index cfc7bf7f297..92bc5f2b104 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); |