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 444C8200CA3 for ; Wed, 3 May 2017 00:05:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 42CEF160BC5; Tue, 2 May 2017 22:05:25 +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 8AD5F160BBF for ; Wed, 3 May 2017 00:05:24 +0200 (CEST) Received: (qmail 36270 invoked by uid 500); 2 May 2017 22:05:19 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 35725 invoked by uid 99); 2 May 2017 22:05:19 -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; Tue, 02 May 2017 22:05:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3194CE0667; Tue, 2 May 2017 22:05:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: inigoiri@apache.org To: common-commits@hadoop.apache.org Date: Tue, 02 May 2017 22:05:37 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [20/50] [abbrv] hadoop git commit: HADOOP-14320. TestIPC.testIpcWithReaderQueuing fails intermittently. Contributed by Eric Badger. archived-at: Tue, 02 May 2017 22:05:25 -0000 HADOOP-14320. TestIPC.testIpcWithReaderQueuing fails intermittently. Contributed by Eric Badger. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/6fe11f61 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/6fe11f61 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/6fe11f61 Branch: refs/heads/HDFS-10467 Commit: 6fe11f61556407f8efb9b376623cd61609a40d5f Parents: 68e45f5 Author: Eric Payne Authored: Fri Apr 28 14:45:26 2017 -0500 Committer: Eric Payne Committed: Fri Apr 28 14:45:26 2017 -0500 ---------------------------------------------------------------------- .../hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/6fe11f61/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java index 6fb3511..4198e40 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestIPC.java @@ -807,7 +807,7 @@ public class TestIPC { } // wait until reader put a call to callQueue, to make sure all readers // are blocking on the queue after initialClients threads are started. - verify(spy, timeout(100).times(i + 1)).put(Mockito.anyObject()); + verify(spy, timeout(5000).times(i + 1)).put(Mockito.anyObject()); } try { --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org