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 1866E10998 for ; Wed, 12 Mar 2014 05:12:23 +0000 (UTC) Received: (qmail 80942 invoked by uid 500); 12 Mar 2014 05:12:22 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 80843 invoked by uid 500); 12 Mar 2014 05:12:21 -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 80725 invoked by uid 99); 12 Mar 2014 05:12:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Mar 2014 05:12:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6FEF99414BA; Wed, 12 Mar 2014 05:12:15 +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: Wed, 12 Mar 2014 05:12:15 -0000 Message-Id: <8dfc536f197e4f4480f8e56750c2e264@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/14] git commit: ACCUMULO-2438 Timeout is a little too tight on a busy system. Repository: accumulo Updated Branches: refs/heads/ACCUMULO-2061 243aafa49 -> db76dd751 ACCUMULO-2438 Timeout is a little too tight on a busy system. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6c050913 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6c050913 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6c050913 Branch: refs/heads/ACCUMULO-2061 Commit: 6c050913cdf8c0fa0743f6a4408f4808026f11c8 Parents: 4cc25ca Author: Josh Elser Authored: Tue Mar 11 00:25:34 2014 -0400 Committer: Josh Elser Committed: Tue Mar 11 00:25:34 2014 -0400 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/6c050913/test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java b/test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java index a627dc1..9e5921d 100644 --- a/test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java +++ b/test/src/test/java/org/apache/accumulo/test/DeleteRowsTest.java @@ -60,7 +60,7 @@ public class DeleteRowsTest { folder.delete(); } - @Test(timeout = 120 * 1000) + @Test(timeout = 5 * 60 * 1000) public void test() throws Exception { ZooKeeperInstance zk = new ZooKeeperInstance(cluster.getInstanceName(), cluster.getZooKeepers()); Connector c = zk.getConnector("root", new PasswordToken(secret));