Skip to content

Commit 5b49c0a

Browse files
WTZ468071157WTZ468071157
authored andcommitted
fix
1 parent 75516ad commit 5b49c0a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

launcher/src/main/java/com/dtstack/flink/sql/launcher/LauncherMain.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ public static void main(String[] args) throws Exception {
112112
String flinkConfDir = launcherOptions.getFlinkconf();
113113
Configuration config = StringUtils.isEmpty(flinkConfDir) ? new Configuration() : GlobalConfiguration.loadConfiguration(flinkConfDir);
114114
JobGraph jobGraph = PackagedProgramUtils.createJobGraph(program, config, 1);
115+
115116
LOG.info("current jobID is {}", jobGraph.getJobID());
116-
PerJobSubmitter.submit(launcherOptions, jobGraph, config);
117+
118+
LOG.info("submit applicationId is {}", PerJobSubmitter.submit(launcherOptions, jobGraph, config));
117119
} else {
118120
ClusterClient clusterClient = ClusterClientFactory.createClusterClient(launcherOptions);
119121
clusterClient.run(program, 1);

0 commit comments

Comments
 (0)