You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/04/25 18:36:12 UTC

[jira] [Created] (FLINK-3809) Missing break in ZooKeeperLeaderRetrievalService#handleStateChange()

Ted Yu created FLINK-3809:
-----------------------------

             Summary: Missing break in ZooKeeperLeaderRetrievalService#handleStateChange()
                 Key: FLINK-3809
                 URL: https://issues.apache.org/jira/browse/FLINK-3809
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


{code}
  protected void handleStateChange(ConnectionState newState) {
    switch (newState) {
      case CONNECTED:
        LOG.debug("Connected to ZooKeeper quorum. Leader retrieval can start.");
      case SUSPENDED:
        LOG.warn("Connection to ZooKeeper suspended. Can no longer retrieve the leader from " +
          "ZooKeeper.");
      case RECONNECTED:
        LOG.info("Connection to ZooKeeper was reconnected. Leader retrieval can be restarted.");
      case LOST:
        LOG.warn("Connection to ZooKeeper lost. Can no longer retrieve the leader from " +
          "ZooKeeper.");
    }
{code}
Except for LOST state, the other states would lead to multiple logs.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)