Skip to content

Commit

Permalink
MINOR: Tuned timeout parameter to reduce chance of transient failure
Browse files Browse the repository at this point in the history
Increased timeout in downstream consumer doing validation step. This addresses a transient failure case in mirror maker tests with mirror maker failover.

Author: Geoff Anderson <[email protected]>

Reviewers: Gwen Shapira

Closes apache#521 from granders/minor-mm-transient-failure
  • Loading branch information
Geoff Anderson authored and gwenshap committed Nov 13, 2015
1 parent 2991c98 commit 2802bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kafkatest/tests/mirror_maker_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, test_context):
whitelist=self.topic, offset_commit_interval_ms=1000)
# This will consume from target kafka cluster
self.consumer = ConsoleConsumer(test_context, num_nodes=1, kafka=self.target_kafka, topic=self.topic,
message_validator=is_int, consumer_timeout_ms=15000)
message_validator=is_int, consumer_timeout_ms=60000)

def setUp(self):
# Source cluster
Expand Down

0 comments on commit 2802bd0

Please sign in to comment.