Github user kfirlevari commented on the issue: https://github.com/apache/zookeeper/pull/411 The build failed because _testNodeDataChanged_ failed (a test that doesn't seem related to the current change). It seems like zk2.create at line 122 ([WatchEventWhenAutoResetTest.java](https://github.com/apache/zookeeper/blob/master/src/java/test/org/apache/zookeeper/test/WatchEventWhenAutoResetTest.java#L122)) is taking too long, and therefore we receive the NodeDeleted event instead of the expected NodeDataChanged (locally on my machine it didn't fail). I guess adding some kind of sleep prior to line 124 should solve this issue?
---