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 D2BAF200B5E for ; Wed, 10 Aug 2016 12:45:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D07FA160A93; Wed, 10 Aug 2016 10:45:12 +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 23A79160A90 for ; Wed, 10 Aug 2016 12:45:11 +0200 (CEST) Received: (qmail 93230 invoked by uid 500); 10 Aug 2016 10:45:11 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 93221 invoked by uid 99); 10 Aug 2016 10:45:11 -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; Wed, 10 Aug 2016 10:45:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 07FFCE03E8; Wed, 10 Aug 2016 10:45:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zhangduo@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-16368 test*WhenRegionMove in TestPartialResultsFromClientSide is flaky Date: Wed, 10 Aug 2016 10:45:11 +0000 (UTC) archived-at: Wed, 10 Aug 2016 10:45:13 -0000 Repository: hbase Updated Branches: refs/heads/branch-1.1 ca5e1a577 -> e4cbf18b6 HBASE-16368 test*WhenRegionMove in TestPartialResultsFromClientSide is flaky Signed-off-by: zhangduo Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e4cbf18b Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e4cbf18b Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e4cbf18b Branch: refs/heads/branch-1.1 Commit: e4cbf18b6a657224529a6b1a9ccb285b1ea2fd2b Parents: ca5e1a5 Author: Phil Yang Authored: Tue Aug 9 15:09:00 2016 +0800 Committer: zhangduo Committed: Wed Aug 10 18:13:38 2016 +0800 ---------------------------------------------------------------------- .../apache/hadoop/hbase/TestPartialResultsFromClientSide.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/e4cbf18b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestPartialResultsFromClientSide.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestPartialResultsFromClientSide.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestPartialResultsFromClientSide.java index 79254c4..0e582d4 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestPartialResultsFromClientSide.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestPartialResultsFromClientSide.java @@ -99,7 +99,7 @@ public class TestPartialResultsFromClientSide { // getCellHeapSize(). private static long CELL_HEAP_SIZE = -1; - private static long timeout = 2000; + private static long timeout = 10000; @BeforeClass public static void setUpBeforeClass() throws Exception { @@ -1051,7 +1051,7 @@ public class TestPartialResultsFromClientSide { scan.setCaching(1); ResultScanner scanner = table.getScanner(scan); scanner.next(); - Thread.sleep(timeout * 3); + Thread.sleep(timeout * 2); int count = 1; while (scanner.next() != null) { count++;