Repository: zookeeper Updated Branches: refs/heads/master 328b9de01 -> 536dda2c4
ZOOKEEPER-3087: Fix findbug warning introduced by ZOOKEEPER-3084. Author: Michael Han <[email protected]> Reviewers: [email protected] Closes #568 from hanm/ZOOKEEPER-3087 Project: http://git-wip-us.apache.org/repos/asf/zookeeper/repo Commit: http://git-wip-us.apache.org/repos/asf/zookeeper/commit/536dda2c Tree: http://git-wip-us.apache.org/repos/asf/zookeeper/tree/536dda2c Diff: http://git-wip-us.apache.org/repos/asf/zookeeper/diff/536dda2c Branch: refs/heads/master Commit: 536dda2c48cb76829a738377c1ef2b2a976804ab Parents: 328b9de Author: Michael Han <[email protected]> Authored: Fri Jul 13 12:47:39 2018 +0200 Committer: Andor Molnar <[email protected]> Committed: Fri Jul 13 12:47:39 2018 +0200 ---------------------------------------------------------------------- src/java/test/config/findbugsExcludeFile.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zookeeper/blob/536dda2c/src/java/test/config/findbugsExcludeFile.xml ---------------------------------------------------------------------- diff --git a/src/java/test/config/findbugsExcludeFile.xml b/src/java/test/config/findbugsExcludeFile.xml index 0047caf..4ab5a5e 100644 --- a/src/java/test/config/findbugsExcludeFile.xml +++ b/src/java/test/config/findbugsExcludeFile.xml @@ -47,6 +47,13 @@ <Bug pattern="DM_EXIT" /> </Match> + <!-- QuorumCnxManager Listener thread fails to bind election port --> + <Match> + <Class name="org.apache.zookeeper.server.quorum.QuorumCnxManager$Listener"/> + <Method name="run" /> + <Bug pattern="DM_EXIT" /> + </Match> + <Match> <Package name="org.apache.jute.compiler.generated" /> </Match>
