Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private boolean poll() {
//Accounting for retriable tuples this way still guarantees that the limit is followed on a per partition basis,
//and prevents locking up the spout when there are too many retriable tuples
&& (numUncommittedOffsets - readyMessageCount < maxUncommittedOffsets
|| consumerAutoCommitMode);
|| consumerAutoCommitMode || readyMessageCount >= maxUncommittedOffsets);

if (!poll) {
if (waitingToEmit()) {
Expand Down