tillrohrmann commented on a change in pull request #11753: [FLINK-16346][tests]
Use fixed JobIDs
URL: https://github.com/apache/flink/pull/11753#discussion_r408928115
##########
File path:
flink-runtime/src/test/java/org/apache/flink/runtime/jobmanager/BlobsCleanupITCase.java
##########
@@ -244,7 +244,9 @@ private JobGraph createJobGraph(TestCase testCase, int
numTasks) {
}
source.setParallelism(numTasks);
- return new JobGraph("BlobCleanupTest", source);
+ JobGraph jobGraph = new JobGraph("BlobCleanupTest", source);
+ jobGraph.setJobID(new JobID(0, testCase.ordinal()));
+ return jobGraph;
Review comment:
```suggestion
return new JobGraph(
new JobID(0, testCase.ordinal()),
"BlobCleanupTest",
source);
```
----------------------------------------------------------------
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]
With regards,
Apache Git Services