Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions kafka/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ def update_metadata(self, metadata):
_new_broker_partitions[leader].add(
TopicPartition(topic, partition))

# Specific topic errors can be ignored if this is a full metadata fetch
elif self.need_all_topic_metadata:
continue

elif error_type is Errors.LeaderNotAvailableError:
log.warning("Topic %s is not available during auto-create"
" initialization", topic)
Expand Down