Github user hanm commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/588#discussion_r210482028 --- Diff: src/java/main/org/apache/zookeeper/server/quorum/Leader.java --- @@ -1172,6 +1172,58 @@ synchronized public long startForwarding(LearnerHandler handler, } // VisibleForTesting protected final Set<Long> connectingFollowers = new HashSet<Long>(); + + private volatile boolean quitWaitForEpoch = false; + private volatile long timeStartWaitForEpoch = -1; + private volatile SyncedLearnerTracker voteSet; + + public static final String MIN_TIME_WAIT_FOR_EPOCH = "zookeeper.leader.minTimeToWaitForEpoch"; + private static int minTimeToWaitForEpoch; + static { + minTimeToWaitForEpoch = Integer.getInteger(MIN_TIME_WAIT_FOR_EPOCH, -1); + LOG.info(MIN_TIME_WAIT_FOR_EPOCH + " = " + minTimeToWaitForEpoch); --- End diff -- Use MessageFormat style {} substitutions.
---