zhuzhurk commented on code in PR #19747: URL: https://github.com/apache/flink/pull/19747#discussion_r877718479
########## flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/ResultPartitionID.java: ########## @@ -44,7 +47,12 @@ public final class ResultPartitionID implements Serializable { @VisibleForTesting public ResultPartitionID() { - this(new IntermediateResultPartitionID(), new ExecutionAttemptID()); + this( + new IntermediateResultPartitionID(), + new ExecutionAttemptID( + new ExecutionGraphID(), + new ExecutionVertexID(new JobVertexID(0, 0), 0), + 0)); Review Comment: Ok. I've added an `ExecutionAttemptID#randomId()`. -- 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