From 902ac7e40e449b0b6c8af649d4582bd86f2b15dd Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 9 Apr 2008 11:10:48 -0700 Subject: [PATCH] mon: send incremental (not full) map to seed osd cluster with new maps --- src/mon/OSDMonitor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index e7cc31ba7cb61..ce48d6e7f9bdb 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -250,7 +250,7 @@ void OSDMonitor::committed() int r = osdmap.get_any_up_osd(); if (r >= 0) { dout(10) << "committed, telling random osd" << r << " all about it" << dendl; - send_latest(osdmap.get_inst(r)); + send_latest(osdmap.get_inst(r), osdmap.get_epoch() - 1); // whatev, they'll request more if they need it } } -- 2.39.5