ReplicatedPG: do not eval_repop if aborted

Signed-off-by: Samuel Just <sam.just@inktank.com>
This commit is contained in:
Samuel Just 2012-05-07 10:33:59 -07:00
parent f6fc1b3031
commit b6bf573699

View File

@ -3714,7 +3714,8 @@ void ReplicatedPG::repop_ack(RepGather *repop, int result, int ack_type,
repop->waitfor_ack.erase(fromosd);
}
eval_repop(repop);
if (!repop->aborted)
eval_repop(repop);
}