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 EB141200D30 for ; Mon, 30 Oct 2017 12:51:24 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E97A1160BE4; Mon, 30 Oct 2017 11:51:24 +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 3026B1609EF for ; Mon, 30 Oct 2017 12:51:24 +0100 (CET) Received: (qmail 2247 invoked by uid 500); 30 Oct 2017 11:51:23 -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 2222 invoked by uid 99); 30 Oct 2017 11:51:23 -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; Mon, 30 Oct 2017 11:51:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E4559DFB6F; Mon, 30 Oct 2017 11:51:22 +0000 (UTC) From: kfirlevari To: dev@zookeeper.apache.org Reply-To: dev@zookeeper.apache.org References: In-Reply-To: Subject: [GitHub] zookeeper issue #411: ZOOKEEPER-2684 Fix a crashing bug in the mixed workloa... Content-Type: text/plain Message-Id: <20171030115122.E4559DFB6F@git1-us-west.apache.org> Date: Mon, 30 Oct 2017 11:51:22 +0000 (UTC) archived-at: Mon, 30 Oct 2017 11:51:25 -0000 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? ---