accord-core/src/main/java/accord/coordinate/CoordinatePreAccept.java [94:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    return;

                if (!reply.isOk())
                {
                    // we've been preempted by a recovery coordinator; defer to it, and wait to hear any result
                    setFailure(new Preempted(txnId, route.homeKey()));
                }
                else
                {
                    PreAcceptOk ok = (PreAcceptOk) reply;
                    successes.add(ok);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



accord-core/src/main/java/accord/coordinate/CoordinatePreAccept.java [179:189]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return;

        if (!reply.isOk())
        {
            // we've been preempted by a recovery coordinator; defer to it, and wait to hear any result
            setFailure(new Preempted(txnId, route.homeKey()));
        }
        else
        {
            PreAcceptOk ok = (PreAcceptOk) reply;
            successes.add(ok);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



