Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4C22E200C78 for ; Thu, 18 May 2017 22:26:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4A892160BB5; Thu, 18 May 2017 20:26:30 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 88129160B9D for ; Thu, 18 May 2017 22:26:29 +0200 (CEST) Received: (qmail 4628 invoked by uid 500); 18 May 2017 20:26:27 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 4551 invoked by uid 99); 18 May 2017 20:26:26 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2017 20:26:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 85CD8DFF93; Thu, 18 May 2017 20:26:26 +0000 (UTC) From: afine To: dev@zookeeper.apache.org Reply-To: dev@zookeeper.apache.org References: In-Reply-To: Subject: [GitHub] zookeeper pull request #236: ZOOKEEPER-2733: Cleanup findbug warnings in bra... Content-Type: text/plain Message-Id: <20170518202626.85CD8DFF93@git1-us-west.apache.org> Date: Thu, 18 May 2017 20:26:26 +0000 (UTC) archived-at: Thu, 18 May 2017 20:26:30 -0000 Github user afine commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/236#discussion_r117345541 --- Diff: src/java/main/org/apache/zookeeper/server/quorum/Follower.java --- @@ -135,6 +135,8 @@ protected void processPacket(QuorumPacket qp) throws IOException{ case Leader.SYNC: fzk.sync(); break; + default: + LOG.error("Invalid packet type received by Observer: " + qp.getType()); --- End diff -- fixed --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---