Skip to content

Commit

Permalink
Resolve merge conflict in PR #225
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Roberts committed Sep 23, 2014
1 parent 29f5619 commit 2fb6e23
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 @@ -305,7 +305,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 2fb6e23

Please sign in to comment.