The 'applying' language dates back to when we would wait for acks from
replicas before applying writes locally. We don't do any of that any more;
now, this loop just cancels the repops with remove_repop() and some other
cleanup.
Signed-off-by: Sage Weil <sage@inktank.com>
(cherry picked from commit
ef40737eee4389faa7792661a0f9d15b3d0440f2)
while (!repop_queue.empty()) {
RepGather *repop = repop_queue.front();
repop_queue.pop_front();
- dout(10) << " applying repop tid " << repop->rep_tid << dendl;
+ dout(10) << " canceling repop tid " << repop->rep_tid << dendl;
repop->rep_aborted = true;
if (repop->on_applied) {
delete repop->on_applied;