Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AB42010072 for ; Fri, 7 Feb 2014 17:55:35 +0000 (UTC) Received: (qmail 47712 invoked by uid 500); 7 Feb 2014 17:55:31 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 47579 invoked by uid 500); 7 Feb 2014 17:55:29 -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 47567 invoked by uid 99); 7 Feb 2014 17:55:29 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Feb 2014 17:55:29 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0E77191F58C; Fri, 7 Feb 2014 17:55:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Fri, 07 Feb 2014 17:55:29 -0000 Message-Id: <8e09413a1c714addae6077ddc1168264@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/6] git commit: ACCUMULO-2337 Increase timeout on MetaSplitTest. Updated Branches: refs/heads/1.5.1-SNAPSHOT 510140ad0 -> 19e6b1018 refs/heads/1.6.0-SNAPSHOT dea61a07d -> db42aba02 refs/heads/master b94e308e5 -> 39a10c8bc ACCUMULO-2337 Increase timeout on MetaSplitTest. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/19e6b101 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/19e6b101 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/19e6b101 Branch: refs/heads/1.5.1-SNAPSHOT Commit: 19e6b101806e5fffdf632e7696b58827eb2e26cf Parents: 510140a Author: Josh Elser Authored: Fri Feb 7 12:53:34 2014 -0500 Committer: Josh Elser Committed: Fri Feb 7 12:53:34 2014 -0500 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/19e6b101/test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java b/test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java index 403d591..aa7c17e 100644 --- a/test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java +++ b/test/src/test/java/org/apache/accumulo/test/MetaSplitTest.java @@ -64,7 +64,7 @@ public class MetaSplitTest { opts.addSplits(Constants.METADATA_TABLE_NAME, splits); } - @Test(timeout = 60000) + @Test(timeout = 120000) public void testMetaSplit() throws Exception { Instance instance = new ZooKeeperInstance(cluster.getInstanceName(), cluster.getZooKeepers()); Connector connector = instance.getConnector("root", new PasswordToken(secret));