Skip to content

Commit

Permalink
Merge pull request #242 from wizzat/pr_225
Browse files Browse the repository at this point in the history
Resolve merge conflict in PR #225
  • Loading branch information
wizzat committed Sep 23, 2014
2 parents 2e3d6db + 2fb6e23 commit c063e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kafka/consumer/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _fetch(self):
if self.max_buffer_size is None:
buffer_size *= 2
else:
buffer_size = max(buffer_size * 2,
buffer_size = min(buffer_size * 2,
self.max_buffer_size)
log.warn("Fetch size too small, increase to %d (2x) "
"and retry", buffer_size)
Expand Down

0 comments on commit c063e30

Please sign in to comment.