summaryrefslogtreecommitdiff
path: root/kafka/consumer/group.py
diff options
context:
space:
mode:
Diffstat (limited to 'kafka/consumer/group.py')
-rw-r--r--kafka/consumer/group.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index bdf0894..bbdf206 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -1174,6 +1174,8 @@ class KafkaConsumer(six.Iterator):
return self
def __next__(self):
+ if self._closed:
+ raise StopIteration('KafkaConsumer closed')
# Now that the heartbeat thread runs in the background
# there should be no reason to maintain a separate iterator
# but we'll keep it available for a few releases just in case