rkhachatryan commented on a change in pull request #16510: URL: https://github.com/apache/flink/pull/16510#discussion_r676863017
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/state/RetrievableStreamStateHandle.java ########## @@ -85,4 +90,10 @@ public long getStateSize() { public void close() throws IOException { // wrappedStreamStateHandle.close(); } + + @Override + public <E extends Exception> void accept(StateObjectVisitor<E> visitor) throws E { + wrappedStreamStateHandle.accept(visitor); + visitor.visit(this); Review comment: Good point. I removed visiting the wrapped state handle to avoid double visits. -- 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