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/10 22:13:53 UTC

[kafka] branch trunk 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 trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


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

commit 0864779ce2a0454b2924567189e2f690d92498a6
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 000f299..d8c0570 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
@@ -168,7 +168,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