Myasuka commented on a change in pull request #16582:
URL: https://github.com/apache/flink/pull/16582#discussion_r677217866



##########
File path: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractUdfStreamOperator.java
##########
@@ -136,6 +136,11 @@ public void notifyCheckpointAborted(long checkpointId) 
throws Exception {
         }
     }
 
+    @Override
+    public void notifyCheckpointSubsumed(long checkpointId) throws Exception {
+        super.notifyCheckpointSubsumed(checkpointId);
+    }

Review comment:
       Hmm, my fault. Since current `userFunction` is not instance of 
`InternalCheckpointListener`, we could remove this.




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to