void PG::queue_check_readable(epoch_t last_peering_reset, ceph::timespan delay)
{
- seastar::sleep(delay).then([last_peering_reset, this] {
+ // handle the peering event in the background
+ std::ignore = seastar::sleep(delay).then([last_peering_reset, this] {
shard_services.start_operation<LocalPeeringEvent>(
this,
shard_services,
void PG::schedule_renew_lease(epoch_t last_peering_reset, ceph::timespan delay)
{
- seastar::sleep(delay).then([last_peering_reset, this] {
+ // handle the peering event in the background
+ std::ignore = seastar::sleep(delay).then([last_peering_reset, this] {
shard_services.start_operation<LocalPeeringEvent>(
this,
shard_services,