Skip to content

Commit 049cf2b

Browse files
committed
[hotfix-35993][core] 修复脏数据在设置了remoteSqlPluginPath时任务提交失败,抛出找不到脏数据插件路径的异常
1 parent 1e32a2e commit 049cf2b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/java/com/dtstack/flink/sql/exec/ExecuteProcessHelper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ public static ParamsInfo parseParams(String[] args) throws Exception {
138138
}
139139

140140
if (!pluginLoadMode.equalsIgnoreCase(EPluginLoadMode.LOCALTEST.name()) && Objects.isNull(dirtyProperties.get(PLUGIN_PATH_STR))) {
141-
dirtyProperties.put(PLUGIN_PATH_STR,
142-
Objects.isNull(remoteSqlPluginPath) ? localSqlPluginPath : remoteSqlPluginPath);
141+
dirtyProperties.put(PLUGIN_PATH_STR, localSqlPluginPath);
143142
}
144143

145144
List<URL> jarUrlList = getExternalJarUrls(options.getAddjar());

0 commit comments

Comments
 (0)