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 5B867200B61 for ; Tue, 9 Aug 2016 21:52:28 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5A35F160AA5; Tue, 9 Aug 2016 19:52:28 +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 A024C160A6B for ; Tue, 9 Aug 2016 21:52:27 +0200 (CEST) Received: (qmail 69771 invoked by uid 500); 9 Aug 2016 19:52:23 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 69756 invoked by uid 99); 9 Aug 2016 19:52: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; Tue, 09 Aug 2016 19:52:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id ADFE9E03A6; Tue, 9 Aug 2016 19:52:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Tue, 09 Aug 2016 19:52:24 -0000 Message-Id: <00b9b6bbcb5e4c82a4a0a533d704dce8@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/3] accumulo git commit: ACCUMULO-4397 Fix FastBulkImporIT timeout archived-at: Tue, 09 Aug 2016 19:52:28 -0000 ACCUMULO-4397 Fix FastBulkImporIT timeout Increase timeout to 120 seconds. 60 was too small for this test. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/10da04b5 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/10da04b5 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/10da04b5 Branch: refs/heads/master Commit: 10da04b55d1c078e3e0a6f092d85a86c825ec609 Parents: 4adeb4b Author: Christopher Tubbs Authored: Tue Aug 9 15:37:49 2016 -0400 Committer: Christopher Tubbs Committed: Tue Aug 9 15:37:49 2016 -0400 ---------------------------------------------------------------------- .../accumulo/test/performance/metadata/FastBulkImportIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/10da04b5/test/src/main/java/org/apache/accumulo/test/performance/metadata/FastBulkImportIT.java ---------------------------------------------------------------------- diff --git a/test/src/main/java/org/apache/accumulo/test/performance/metadata/FastBulkImportIT.java b/test/src/main/java/org/apache/accumulo/test/performance/metadata/FastBulkImportIT.java index a74cb6b..cd8c9d5 100644 --- a/test/src/main/java/org/apache/accumulo/test/performance/metadata/FastBulkImportIT.java +++ b/test/src/main/java/org/apache/accumulo/test/performance/metadata/FastBulkImportIT.java @@ -51,7 +51,7 @@ public class FastBulkImportIT extends ConfigurableMacBase { @Override protected int defaultTimeoutSeconds() { - return 60; + return 120; } @Override