if(status.requester != null){
List<AbstractContext> aborted = new LinkedList<AbstractContext>();
for(Iterator<AbstractContext> itr=status.localPending.iterator(); itr.hasNext(); )
try {
AbstractContext local = itr.next();
if(HyFlow.getConflictManager().resolve(status.pending, local) == 0){
Logger.debug("Avoiding repeated TIMEOUT! " + local + " aborted");
aborted.add(local);
}
} catch (TransactionException e) {