Skip to content

Commit

Permalink
Dev 1.10.0 bug fix (#690)
Browse files Browse the repository at this point in the history
* Code Optimization

* Code Optimization

* Code Optimization

* Code Optimization

---------

Co-authored-by: “v_kkhuang” <“420895376@qq.com”>
  • Loading branch information
v-kkhuang and “v_kkhuang” authored Dec 24, 2024
1 parent ab849c7 commit f937ef1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ public Message killEngineByUpdateConfig(HttpServletRequest req, @RequestBody Jso
&& AMConfiguration.isUnAllowKilledEngineType(engineType)) {
return Message.error("multi user engine does not support this feature(多用户引擎不支持此功能)");
}
if (engineType.equals(Configuration.GLOBAL_CONF_SYMBOL())) {
if (Configuration.GLOBAL_CONF_SYMBOL().equals(engineType)) {
Arrays.stream(AMConfiguration.UDF_KILL_ENGINE_TYPE.split(","))
.forEach(
engine ->
Expand Down

0 comments on commit f937ef1

Please sign in to comment.