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 3130111F00 for ; Tue, 1 Jul 2014 05:30:59 +0000 (UTC) Received: (qmail 23756 invoked by uid 500); 1 Jul 2014 05:30:59 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 23651 invoked by uid 500); 1 Jul 2014 05:30:59 -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 23488 invoked by uid 99); 1 Jul 2014 05:30:59 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jul 2014 05:30:59 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BFBB49908B1; Tue, 1 Jul 2014 05:30:58 +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: Tue, 01 Jul 2014 05:31:01 -0000 Message-Id: <8455050e97ff47d5ab7f23c9531fbe81@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [4/4] git commit: ACCUMULO-2913 Increase repeated checks to counteract occasional test failures ACCUMULO-2913 Increase repeated checks to counteract occasional test failures Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/7c4d620a Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/7c4d620a Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/7c4d620a Branch: refs/heads/master Commit: 7c4d620a9def000eabfd53d7eab9319e43b5a129 Parents: 73fc496 Author: Josh Elser Authored: Tue Jul 1 01:22:22 2014 -0400 Committer: Josh Elser Committed: Tue Jul 1 01:23:15 2014 -0400 ---------------------------------------------------------------------- .../test/replication/UnorderedWorkAssignerReplicationIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/7c4d620a/test/src/test/java/org/apache/accumulo/test/replication/UnorderedWorkAssignerReplicationIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/replication/UnorderedWorkAssignerReplicationIT.java b/test/src/test/java/org/apache/accumulo/test/replication/UnorderedWorkAssignerReplicationIT.java index 8977754..7ea7e32 100644 --- a/test/src/test/java/org/apache/accumulo/test/replication/UnorderedWorkAssignerReplicationIT.java +++ b/test/src/test/java/org/apache/accumulo/test/replication/UnorderedWorkAssignerReplicationIT.java @@ -631,7 +631,7 @@ public class UnorderedWorkAssignerReplicationIT extends ConfigurableMacIT { long countTable = 0l; // Check a few times - for (int i = 0; i < 5; i++) { + for (int i = 0; i < 10; i++) { countTable = 0l; for (Entry entry : connPeer.createScanner(peerTable1, Authorizations.EMPTY)) { countTable++; @@ -647,7 +647,7 @@ public class UnorderedWorkAssignerReplicationIT extends ConfigurableMacIT { Assert.assertTrue("Did not find any records in " + peerTable1 + " on peer", countTable > 0); - for (int i = 0; i < 5; i++ ) { + for (int i = 0; i < 10; i++ ) { countTable = 0l; for (Entry entry : connPeer.createScanner(peerTable2, Authorizations.EMPTY)) { countTable++;