Github user eolivelli commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/622#discussion_r217689682
--- Diff:
src/java/test/org/apache/zookeeper/server/quorum/FuzzySnapshotRelatedTest.java
---
@@ -60,14 +60,17 @@
MainThread[] mt = null;
ZooKeeper[] zk = null;
+ int[] clientPorts = null;
int leaderId;
int followerA;
@Before
public void setup() throws Exception {
+ ZooKeeperServer.setCloseSessionTxnEnabled(true);
--- End diff --
This property won't impact other testcases in the class. Okay
---