summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Sang <sang.bri@gmail.com>2019-05-23 09:07:11 -0700
committerJeff Widman <jeff@jeffwidman.com>2019-05-23 09:07:11 -0700
commit1a0f2973190e2bb60909bfcd28e5ad8e732e918e (patch)
tree103c312e4449895d639d6e2b8b8656dc47d7e9e9
parent1f73287e890a4c68f240dcc8b6966de1e62b65cc (diff)
downloadkafka-python-1a0f2973190e2bb60909bfcd28e5ad8e732e918e.tar.gz
Fix typo in _fetch_all_topic_metadata function (#1809)
-rw-r--r--kafka/consumer/group.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index 39a4e08..6c12767 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -552,7 +552,7 @@ class KafkaConsumer(six.Iterator):
committed = None
return committed
- def _fetch_all_topit_metadata(self):
+ def _fetch_all_topic_metadata(self):
"""A blocking call that fetches topic metadata for all topics in the
cluster that the user is authorized to view.
"""