tillrohrmann commented on a change in pull request #6733: [FLINK-10291]
Generate JobGraph with fixed/configurable JobID in
StandaloneJobClusterEntrypoint
URL: https://github.com/apache/flink/pull/6733#discussion_r221280962
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamGraph.java
##########
@@ -656,15 +657,24 @@ private void removeVertex(StreamNode toRemove) {
*/
@SuppressWarnings("deprecation")
public JobGraph getJobGraph() {
+ return getJobGraph(null);
+ }
+
+ /**
+ * Gets the assembled {@link JobGraph} with a given job id.
+ */
+ @SuppressWarnings("deprecation")
+ @Override
+ public JobGraph getJobGraph(JobID jobID) {
Review comment:
`@Nullable` annotation for `jobID` missing.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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