Fix closing quorums on QuorumManager.stop

This commit is contained in:
Ville Skyttä 2016-09-24 14:48:36 +03:00 committed by Clebert Suconic
parent 147bc33d42
commit f2c2ed32da
1 changed files with 1 additions and 1 deletions

View File

@ -96,10 +96,10 @@ public final class QuorumManager implements ClusterTopologyListener, ActiveMQCom
} }
} }
} }
quorums.clear();
for (Quorum quorum : quorums.values()) { for (Quorum quorum : quorums.values()) {
quorum.close(); quorum.close();
} }
quorums.clear();
} }
/** /**