We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a8a38 commit 37ed766Copy full SHA for 37ed766
kafka/consumer/group.py
@@ -1070,8 +1070,7 @@ def _message_generator(self):
1070
self._update_fetch_positions(partitions)
1071
1072
poll_ms = 1000 * (self._consumer_timeout - time.time())
1073
- if not self._fetcher.in_flight_fetches():
1074
- poll_ms = min(poll_ms, self.config['reconnect_backoff_ms'])
+ poll_ms = min(poll_ms, self.config['retry_backoff_ms'])
1075
self._client.poll(timeout_ms=poll_ms)
1076
1077
# after the long poll, we should check whether the group needs to rebalance
0 commit comments