You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2018/11/03 17:11:10 UTC

[kafka] branch 0.11.0 updated: KAFKA-7561: Increase stop_timeout_sec to make ConsoleConsumerTest pass (#5853)

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

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


The following commit(s) were added to refs/heads/0.11.0 by this push:
     new 2187086  KAFKA-7561: Increase stop_timeout_sec to make ConsoleConsumerTest pass (#5853)
2187086 is described below

commit 218708666984f21d8be53feeb941b24c43a13e57
Author: Gardner Vickers <ga...@vickers.me>
AuthorDate: Sat Nov 3 13:06:17 2018 -0400

    KAFKA-7561: Increase stop_timeout_sec to make ConsoleConsumerTest pass (#5853)
    
    Looks like the increased delay happens when connecting to the docker container.
    
    Reviewers: Ismael Juma <is...@juma.me.uk>
---
 tests/kafkatest/services/console_consumer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kafkatest/services/console_consumer.py b/tests/kafkatest/services/console_consumer.py
index 312131e..5363d24 100644
--- a/tests/kafkatest/services/console_consumer.py
+++ b/tests/kafkatest/services/console_consumer.py
@@ -97,7 +97,7 @@ class ConsoleConsumer(KafkaPathResolverMixin, JmxMixin, BackgroundThreadService)
     def __init__(self, context, num_nodes, kafka, topic, group_id="test-consumer-group", new_consumer=True,
                  message_validator=None, from_beginning=True, consumer_timeout_ms=None, version=DEV_BRANCH,
                  client_id="console-consumer", print_key=False, jmx_object_names=None, jmx_attributes=None,
-                 enable_systest_events=False, stop_timeout_sec=15, print_timestamp=False,
+                 enable_systest_events=False, stop_timeout_sec=30, print_timestamp=False,
                  isolation_level="read_uncommitted"):
         """
         Args: