diff options
author | Dana Powers <dana.powers@gmail.com> | 2017-12-21 14:46:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 14:46:10 -0800 |
commit | ad024d1e897dbf16bd629fa63895bd7af4a8d959 (patch) | |
tree | f1993351b2c6487e8e623cefabf42ddf7477f666 /test/test_consumer_integration.py | |
parent | 995664c7d407009a0a1030c7541848eb5ad51c97 (diff) | |
download | kafka-python-ad024d1e897dbf16bd629fa63895bd7af4a8d959.tar.gz |
KAFKA-3888 Use background thread to process consumer heartbeats (#1266)
Diffstat (limited to 'test/test_consumer_integration.py')
-rw-r--r-- | test/test_consumer_integration.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py index d1843b3..ded2314 100644 --- a/test/test_consumer_integration.py +++ b/test/test_consumer_integration.py @@ -739,7 +739,8 @@ class TestConsumerIntegration(KafkaIntegrationTestCase): @kafka_versions('>=0.10.1') def test_kafka_consumer_offsets_for_times_errors(self): - consumer = self.kafka_consumer() + consumer = self.kafka_consumer(fetch_max_wait_ms=200, + request_timeout_ms=500) tp = TopicPartition(self.topic, 0) bad_tp = TopicPartition(self.topic, 100) |