eskabetxe commented on code in PR #22840: URL: https://github.com/apache/flink/pull/22840#discussion_r1257925161
########## flink-streaming-java/src/test/java/org/apache/flink/streaming/api/functions/PrintSinkTest.java: ########## @@ -216,6 +218,21 @@ public OptionalLong getRestoredCheckpointId() { asSerializationSchemaInitializationContext() { return this; } + + @Override + public boolean isObjectReuseEnabled() { + return false; + } + + @Override + public <IN> TypeSerializer<IN> createInputSerializer() { + return null; + } + + @Override + public JobID getJobId() { + return new JobID("test_print".getBytes()); Review Comment: done -- 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