gaoyunhaii commented on a change in pull request #15055:
URL: https://github.com/apache/flink/pull/15055#discussion_r657620691
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestServerHandler.java
##########
@@ -123,6 +124,10 @@ else if (msgClazz == TaskEventRequest.class) {
outboundQueue.addCreditOrResumeConsumption(
request.receiverId,
NetworkSequenceViewReader::resumeConsumption);
+ } else if (msgClazz ==
NettyMessage.AckAllUserRecordsProcessed.class) {
Review comment:
When modifying the imports I found that for static inner classes, we
should be able directly use `import` instead of `import static`, thus I unified
all the imports to use `import`.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]