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 2a86b23 commit 46882a8Copy full SHA for 46882a8
kafka/cluster.py
@@ -285,6 +285,10 @@ def update_metadata(self, metadata):
285
_new_broker_partitions[leader].add(
286
TopicPartition(topic, partition))
287
288
+ # Specific topic errors can be ignored if this is a full metadata fetch
289
+ elif self.need_all_topic_metadata:
290
+ continue
291
+
292
elif error_type is Errors.LeaderNotAvailableError:
293
log.warning("Topic %s is not available during auto-create"
294
" initialization", topic)
0 commit comments