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 47F2E11D58 for ; Thu, 21 Aug 2014 22:27:10 +0000 (UTC) Received: (qmail 20124 invoked by uid 500); 21 Aug 2014 22:27:10 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 20045 invoked by uid 500); 21 Aug 2014 22:27:10 -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 20011 invoked by uid 99); 21 Aug 2014 22:27:10 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2014 22:27:10 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E38199C72D2; Thu, 21 Aug 2014 22:27:09 +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: Thu, 21 Aug 2014 22:27:13 -0000 Message-Id: <50804dcee7944718b529e8fbc91e0b0a@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [5/9] git commit: ACCUMULO-3076 Increase the timeout for SimpleBalancerFairnessIT ACCUMULO-3076 Increase the timeout for SimpleBalancerFairnessIT Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f1f6ba77 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f1f6ba77 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f1f6ba77 Branch: refs/heads/1.6.1-SNAPSHOT Commit: f1f6ba7724df9cd91da6d6692ba8f97f0d108ac1 Parents: 6df5799 Author: Josh Elser Authored: Thu Aug 21 17:58:46 2014 -0400 Committer: Josh Elser Committed: Thu Aug 21 17:58:46 2014 -0400 ---------------------------------------------------------------------- .../test/functional/SimpleBalancerFairnessIT.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/f1f6ba77/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java b/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java index ce286d5..6904563 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java @@ -41,7 +41,7 @@ import org.apache.hadoop.conf.Configuration; import org.junit.Test; public class SimpleBalancerFairnessIT extends ConfigurableMacIT { - + @Override public void configure(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) { Map siteConfig = new HashMap(); @@ -49,10 +49,10 @@ public class SimpleBalancerFairnessIT extends ConfigurableMacIT { siteConfig.put(Property.TSERV_MAJC_DELAY.getKey(), "0"); cfg.setSiteConfig(siteConfig); } - + @Override protected int defaultTimeoutSeconds() { - return 7 * 60; + return 10 * 60; } @Test @@ -69,7 +69,7 @@ public class SimpleBalancerFairnessIT extends ConfigurableMacIT { c.tableOperations().flush("test_ingest", null, null, false); UtilWaitThread.sleep(15 * 1000); Credentials creds = new Credentials("root", new PasswordToken(ROOT_PASSWORD)); - + MasterClientService.Iface client = null; MasterMonitorInfo stats = null; try { @@ -91,5 +91,5 @@ public class SimpleBalancerFairnessIT extends ConfigurableMacIT { for (int i = 1; i < counts.size(); i++) assertTrue(Math.abs(counts.get(0) - counts.get(i)) <= tservers.size()); } - + }