mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
Merge pull request #40660 from dvanders/stash
mon: load stashed map before mkfs monmap Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
commit
1e17f2b78a
@ -123,6 +123,14 @@ int obtain_monmap(MonitorDBStore &store, bufferlist &bl)
|
||||
}
|
||||
}
|
||||
|
||||
if (store.exists("mon_sync", "temp_newer_monmap")) {
|
||||
dout(10) << __func__ << " found temp_newer_monmap" << dendl;
|
||||
int err = store.get("mon_sync", "temp_newer_monmap", bl);
|
||||
ceph_assert(err == 0);
|
||||
ceph_assert(bl.length() > 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (store.exists("mkfs", "monmap")) {
|
||||
dout(10) << __func__ << " found mkfs monmap" << dendl;
|
||||
int err = store.get("mkfs", "monmap", bl);
|
||||
|
Loading…
Reference in New Issue
Block a user