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 800E0111C8 for ; Fri, 28 Mar 2014 16:59:52 +0000 (UTC) Received: (qmail 86465 invoked by uid 500); 28 Mar 2014 16:59:51 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 86401 invoked by uid 500); 28 Mar 2014 16:59:50 -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 86392 invoked by uid 99); 28 Mar 2014 16:59:50 -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, 28 Mar 2014 16:59:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 82F948B1EA3; Fri, 28 Mar 2014 16:59:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ecn@apache.org To: commits@accumulo.apache.org Date: Fri, 28 Mar 2014 16:59:50 -0000 Message-Id: <6feef3a319f44373a60b1d308e0f79af@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: ACCUMULO-2455 1s timeout is too tight for testing Repository: accumulo Updated Branches: refs/heads/master 5655a044e -> 277da3f83 ACCUMULO-2455 1s timeout is too tight for testing Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/e5070d0a Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/e5070d0a Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/e5070d0a Branch: refs/heads/master Commit: e5070d0ad084f218d283b9daa58246184afdb477 Parents: a20e19f Author: Eric C. Newton Authored: Fri Mar 28 12:58:19 2014 -0400 Committer: Eric C. Newton Committed: Fri Mar 28 12:58:34 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/accumulo/test/functional/WriteAheadLogIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/e5070d0a/test/src/test/java/org/apache/accumulo/test/functional/WriteAheadLogIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/WriteAheadLogIT.java b/test/src/test/java/org/apache/accumulo/test/functional/WriteAheadLogIT.java index ad18b65..1c31c2f 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/WriteAheadLogIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/WriteAheadLogIT.java @@ -45,7 +45,7 @@ public class WriteAheadLogIT extends ConfigurableMacIT { siteConfig.put(Property.GC_CYCLE_START.getKey(), "1"); siteConfig.put(Property.MASTER_RECOVERY_DELAY.getKey(), "1s"); siteConfig.put(Property.TSERV_MAJC_DELAY.getKey(), "1"); - siteConfig.put(Property.INSTANCE_ZK_TIMEOUT.getKey(), "1s"); + siteConfig.put(Property.INSTANCE_ZK_TIMEOUT.getKey(), "4s"); cfg.setSiteConfig(siteConfig); cfg.useMiniDFS(true); }