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 <ismael@juma.me.uk>
This commit is contained in:
Gardner Vickers 2018-11-03 13:06:17 -04:00 committed by Ismael Juma
parent fa2039fc1e
commit 2187086669
1 changed files with 1 additions and 1 deletions

View File

@ -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, 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, 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, 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"): isolation_level="read_uncommitted"):
""" """
Args: Args: