You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by bb...@apache.org on 2019/06/11 01:06:04 UTC

[kafka] branch 2.1 updated: MINOR: Increase timeouts to 30 seconds (#6852)

This is an automated email from the ASF dual-hosted git repository.

bbejeck pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 94ba1b2  MINOR: Increase timeouts to 30 seconds (#6852)
94ba1b2 is described below

commit 94ba1b29864e9d86e5b42e235342845bec966408
Author: Bill Bejeck <bb...@gmail.com>
AuthorDate: Mon Jun 10 18:13:30 2019 -0400

    MINOR: Increase timeouts to 30 seconds (#6852)
    
    The ResetIntegrationTest has experienced several failures and it seems the current timeout of 10 seconds may not be enough time
    
    Reviewers: Matthias J. Sax <mj...@apache.org>, Boyang Chen <bo...@confluent.io>
---
 .../apache/kafka/streams/integration/AbstractResetIntegrationTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/src/test/java/org/apache/kafka/streams/integration/AbstractResetIntegrationTest.java b/streams/src/test/java/org/apache/kafka/streams/integration/AbstractResetIntegrationTest.java
index bb199b7..77c2997 100644
--- a/streams/src/test/java/org/apache/kafka/streams/integration/AbstractResetIntegrationTest.java
+++ b/streams/src/test/java/org/apache/kafka/streams/integration/AbstractResetIntegrationTest.java
@@ -172,7 +172,7 @@ public abstract class AbstractResetIntegrationTest {
 
     private static final long STREAMS_CONSUMER_TIMEOUT = 2000L;
     private static final long CLEANUP_CONSUMER_TIMEOUT = 2000L;
-    private static final int TIMEOUT_MULTIPLIER = 5;
+    private static final int TIMEOUT_MULTIPLIER = 15;
 
     private class ConsumerGroupInactiveCondition implements TestCondition {
         @Override