Skip to content

Commit 16e35c9

Browse files
author
Dana Powers
committed
Drop request_timeout_ms override in consumer group test
1 parent 1a0b866 commit 16e35c9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/test_consumer_group.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ def consumer_thread(i):
9494
stop[i] = threading.Event()
9595
consumers[i] = KafkaConsumer(topic,
9696
bootstrap_servers=connect_str,
97-
heartbeat_interval_ms=500,
98-
request_timeout_ms=1000)
97+
heartbeat_interval_ms=500)
9998
while not stop[i].is_set():
10099
for tp, records in six.itervalues(consumers[i].poll()):
101100
messages[i][tp].extend(records)

0 commit comments

Comments
 (0)