Github user pnowojski commented on a diff in the pull request: https://github.com/apache/flink/pull/4533#discussion_r144052410 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientHandler.java --- @@ -330,6 +330,10 @@ else if (bufferProvider.isDestroyed()) { } } + void notifyCreditAvailable(RemoteInputChannel inputChannel) { + // Implement in CreditBasedClientHandler --- End diff -- is that a next PR? Is it related to `CreditBasedClientHandler:: notifyCreditAvailable`?
---