pnowojski commented on a change in pull request #11877: URL: https://github.com/apache/flink/pull/11877#discussion_r666286396
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestQueue.java ########## @@ -164,6 +168,27 @@ void addCreditOrResumeConsumption( } } + /** + * Announces remaining backlog to the consumer after the available data notification or data + * consumption resumption. + */ + private void announceBacklog(NetworkSequenceViewReader reader) { + int backlog = reader.getRemainingBacklog(); + if (backlog > 0) { Review comment: Yes you are right. `reader.isAvailable()` is already being called. I'm not sure why I've missed that. `reader.getAvailabilityAndBacklog();` should work fine :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org