Skip to content

Commit 25f4ed8

Browse files
committed
standalone luginLoadMode bugfix
1 parent 5b5b2c6 commit 25f4ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

launcher/src/main/java/com/dtstack/flink/sql/launcher/executor/StandaloneExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public StandaloneExecutor(JobParamsInfo jobParamsInfo) {
4747

4848
public void exec() throws Exception {
4949

50-
Preconditions.checkArgument(!StringUtils.equalsIgnoreCase(jobParamsInfo.getPluginLoadMode(), EPluginLoadMode.CLASSPATH.name()),
50+
Preconditions.checkArgument(StringUtils.equalsIgnoreCase(jobParamsInfo.getPluginLoadMode(), EPluginLoadMode.CLASSPATH.name()),
5151
"standalone only supports classpath mode");
5252

5353
JobGraph jobGraph = JobGraphBuildUtil.buildJobGraph(jobParamsInfo);

0 commit comments

Comments
 (0)