summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@rd.io>2016-01-04 00:55:55 -0800
committerDana Powers <dana.powers@rd.io>2016-01-04 00:55:55 -0800
commit16e35c9d160dba02fc37323fa811607c5fbfe7b6 (patch)
treee89bac098acd1e09974e786e4dbfc0e00e745623
parent1a0b86625f265aa1e0edcf7f1909be3a572a2994 (diff)
downloadkafka-python-16e35c9d160dba02fc37323fa811607c5fbfe7b6.tar.gz
Drop request_timeout_ms override in consumer group test
-rw-r--r--test/test_consumer_group.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_consumer_group.py b/test/test_consumer_group.py
index 795e127..4fd4cdf 100644
--- a/test/test_consumer_group.py
+++ b/test/test_consumer_group.py
@@ -94,8 +94,7 @@ def test_group(kafka_broker, topic):
stop[i] = threading.Event()
consumers[i] = KafkaConsumer(topic,
bootstrap_servers=connect_str,
- heartbeat_interval_ms=500,
- request_timeout_ms=1000)
+ heartbeat_interval_ms=500)
while not stop[i].is_set():
for tp, records in six.itervalues(consumers[i].poll()):
messages[i][tp].extend(records)