f->close_section();
}
+PGPeeringPipeline &PGAdvanceMap::peering_pp(PG &pg)
+{
+ return pg.peering_request_pg_pipeline;
+}
+
seastar::future<> PGAdvanceMap::start()
{
using cached_map_t = OSDMapService::cached_map_t;
IRef ref = this;
return enter_stage<>(
- pg->peering_request_pg_pipeline.process
+ peering_pp(*pg).process
).then([this] {
/*
* PGAdvanceMap is scheduled at pg creation and when
std::tuple<
PGPeeringPipeline::Process::BlockingEvent
> tracking_events;
+
+private:
+ PGPeeringPipeline &peering_pp(PG &pg);
};
}