ARTEMIS-1763 - Remove 'quick check' before quorum

https://issues.apache.org/jira/browse/ARTEMIS-1763
This commit is contained in:
andytaylor 2018-03-22 10:58:11 +00:00 committed by Clebert Suconic
parent 7628236453
commit 3a548a9df5
1 changed files with 0 additions and 5 deletions

View File

@ -288,11 +288,6 @@ public class SharedNothingBackupQuorum implements Quorum, SessionFailureListener
synchronized (voteGuard) {
while (!decision && voteAttempts++ < voteRetries) {
// a quick check to see if the live actually is dead
if (quorumManager.checkLive(liveTransportConfiguration)) {
//the live is still alive so we best not failover
return false;
}
//the live is dead so lets vote for quorum
QuorumVoteServerConnect quorumVote = new QuorumVoteServerConnect(size, targetServerID);