Remove unused variable is_next_available and while loop. These
are leftovers from commit #
a69a989f.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
void RGWObjectExpirer::inspect_all_shards(const utime_t& last_run, const utime_t& round_start)
{
- bool is_next_available;
utime_t shard_marker;
CephContext *cct = store->ctx();
ldout(store->ctx(), 20) << "proceeding shard = " << shard << dendl;
process_single_shard(shard, last_run, round_start);
- } while (is_next_available);
+ }
return;
}