File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -186,14 +186,14 @@ int main(int argc, const char* argv[])
186186 const auto nonce = crimson::osd::get_nonce ();
187187 crimson::net::MessengerRef cluster_msgr, client_msgr;
188188 crimson::net::MessengerRef hb_front_msgr, hb_back_msgr;
189- for (auto [msgr, name] : {make_pair (std::ref (client_msgr), " client" s)}) {
189+ for (auto [msgr, name] : {make_pair (std::ref (client_msgr), " client" s),
190+ make_pair (std::ref (cluster_msgr), " cluster" s)}) {
190191 msgr = crimson::net::Messenger::create (entity_name_t::OSD (whoami),
191192 name,
192193 nonce,
193194 false );
194195 }
195- for (auto [msgr, name] : {make_pair (std::ref (cluster_msgr), " cluster" s),
196- make_pair (std::ref (hb_front_msgr), " hb_front" s),
196+ for (auto [msgr, name] : {make_pair (std::ref (hb_front_msgr), " hb_front" s),
197197 make_pair (std::ref (hb_back_msgr), " hb_back" s)}) {
198198 msgr = crimson::net::Messenger::create (entity_name_t::OSD (whoami),
199199 name,
You can’t perform that action at this time.
0 commit comments