diff options
-rw-r--r-- | kafka/coordinator/consumer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/coordinator/consumer.py b/kafka/coordinator/consumer.py index b575664..9d6f4eb 100644 --- a/kafka/coordinator/consumer.py +++ b/kafka/coordinator/consumer.py @@ -256,7 +256,7 @@ class ConsumerCoordinator(BaseCoordinator): ensures that the consumer has joined the group. This also handles periodic offset commits if they are enabled. """ - if self.group_id is None or self.config['api_version'] < (0, 8, 2): + if self.group_id is None: return self._invoke_completed_offset_commit_callbacks() |