Skip to content

Commit

Permalink
update client.py to warn about missing partitions
Browse files Browse the repository at this point in the history
  • Loading branch information
jimjh authored and Jim Lim committed Sep 18, 2013
1 parent f47dc10 commit ec97a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kafka/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def _load_metadata_for_topics(self, *topics):
self.topic_partitions.pop(topic, None)

if not partitions:
log.info("Partition is unassigned, delay for 1s and retry")
log.warn("Partition is unassigned, delay for 1s and retry")
time.sleep(1)
self._load_metadata_for_topics(topic)
break
Expand Down

0 comments on commit ec97a30

Please sign in to comment.