Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-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 67FEC11F2F for ; Wed, 9 Apr 2014 21:53:12 +0000 (UTC) Received: (qmail 5987 invoked by uid 500); 9 Apr 2014 21:53:12 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 5959 invoked by uid 500); 9 Apr 2014 21:53:12 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 5952 invoked by uid 99); 9 Apr 2014 21:53:11 -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, 09 Apr 2014 21:53:11 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A6F2A94FDBA; Wed, 9 Apr 2014 21:53:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: junrao@apache.org To: commits@kafka.apache.org Message-Id: <9db54ec54ec04a38a3368d0ddaab574e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: kafka-1376; transient test failure in UncleanLeaderElectionTest; patched by Jun Rao; reviewed by Joel Koshy Date: Wed, 9 Apr 2014 21:53:11 +0000 (UTC) Repository: kafka Updated Branches: refs/heads/trunk 911ff5245 -> 47019a849 kafka-1376; transient test failure in UncleanLeaderElectionTest; patched by Jun Rao; reviewed by Joel Koshy Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/47019a84 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/47019a84 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/47019a84 Branch: refs/heads/trunk Commit: 47019a849e69209c16defa81001055aa9f57674d Parents: 911ff52 Author: Jun Rao Authored: Wed Apr 9 14:53:03 2014 -0700 Committer: Jun Rao Committed: Wed Apr 9 14:53:03 2014 -0700 ---------------------------------------------------------------------- core/src/test/scala/unit/kafka/utils/TestUtils.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/47019a84/core/src/test/scala/unit/kafka/utils/TestUtils.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/utils/TestUtils.scala b/core/src/test/scala/unit/kafka/utils/TestUtils.scala index 71ab6e1..53d01aa 100644 --- a/core/src/test/scala/unit/kafka/utils/TestUtils.scala +++ b/core/src/test/scala/unit/kafka/utils/TestUtils.scala @@ -163,7 +163,7 @@ object TestUtils extends Logging { props.put("group.id", groupId) props.put("consumer.id", consumerId) props.put("consumer.timeout.ms", consumerTimeout.toString) - props.put("zookeeper.session.timeout.ms", "400") + props.put("zookeeper.session.timeout.ms", "6000") props.put("zookeeper.sync.time.ms", "200") props.put("auto.commit.interval.ms", "1000") props.put("rebalance.max.retries", "4")