GitHub user afine opened a pull request:

    https://github.com/apache/zookeeper/pull/260

    ZOOKEEPER-2786: Flaky test: 
org.apache.zookeeper.test.ClientTest.testNonExistingOpCode

    On branch 3.4 we attempt to check that an invalid opcode in a request 
causes the server to disconnect the client with:
    
    ```
            try {
                zk.exists("/m1", false);
                fail("The connection should have been closed");
            } catch (KeeperException.ConnectionLossException expected) {
            }
    ```
    
    This can run into a race with the reconnection logic in 
`ClientCnxn.java`https://github.com/apache/zookeeper/blob/branch-3.4/src/java/main/org/apache/zookeeper/ClientCnxn.java#L1052
 We should use a watcher instead to track disconnects.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/afine/zookeeper ZOOKEEPER-2786

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/zookeeper/pull/260.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #260
    
----

----


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to