davidradl commented on code in PR #24754:
URL: https://github.com/apache/flink/pull/24754#discussion_r1588939108
##########
flink-clients/src/main/java/org/apache/flink/client/program/ClusterClient.java:
##########
@@ -94,7 +95,18 @@ public interface ClusterClient<T> extends AutoCloseable {
* @param jobGraph to submit
* @return {@link JobID} of the submitted job
*/
- CompletableFuture<JobID> submitJob(JobGraph jobGraph);
+ default CompletableFuture<JobID> submitJob(JobGraph jobGraph) {
+ return submitJob(jobGraph, null);
Review Comment:
cant we leave this as return submitJob(jobGraph(jobGraph);
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]