From a2e7733e4fd777f76666ebfa74af168f7446a95c Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Mon, 30 Jun 2025 14:29:23 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E7=9B=AE=E5=BD=95-=E7=BB=84=E5=90=88=E5=B7=A5=E5=85=B7?= =?UTF-8?q?=E9=A2=84=E8=AE=BE=E4=BA=86=E5=88=86=E6=89=B9=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=EF=BC=8C=E6=9C=8D=E5=8A=A1=E9=87=8D=E6=96=B0=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E5=88=86=E6=89=B9=E9=85=8D=E7=BD=AE=EF=BC=8C=E5=8F=91=E8=B5=B7?= =?UTF-8?q?=E4=BD=9C=E4=B8=9A=E7=94=A8=E7=9A=84=E8=BF=98=E6=98=AF=E7=BB=84?= =?UTF-8?q?=E5=90=88=E5=B7=A5=E5=85=B7=E7=9A=84=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1454949777506304]服务目录-组合工具预设了分批配置,服务重新设置分批配置,发起作业用的还是组合工具的配置 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1454949777506304 --- .../module/autoexec/service/AutoexecServiceServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java b/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java index 1225c30d..837f4850 100644 --- a/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java +++ b/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java @@ -147,7 +147,7 @@ public class AutoexecServiceServiceImpl implements AutoexecServiceService { } if (versionVo.getNeedRoundCount()) { ParamMappingVo parallelPolicy = serviceConfigVo.getParallelPolicy(); - if (Objects.equals(parallelPolicy.getValue(), AutoexecParallelPolicy.ROUND_COUNT.getValue())) { + if (parallelPolicy != null && Objects.equals(parallelPolicy.getValue(), AutoexecParallelPolicy.ROUND_COUNT.getValue())) { ParamMappingVo roundCountMappingVo = serviceConfigVo.getRoundCount(); if (roundCountMappingVo == null) { if (throwException) { @@ -885,7 +885,7 @@ public class AutoexecServiceServiceImpl implements AutoexecServiceService { AutoexecCombopExecuteConfigVo executeConfig = versionConfig.getExecuteConfig(); if (executeConfig != null) { if (autoexecCombopVersionVo.getNeedRoundCount()) { - if (executeConfig.getRoundCount() != null) { + if (executeConfig.getRoundCount() != null && config.getRoundCount() == null) { ParamMappingVo roundCount = new ParamMappingVo(); roundCount.setMappingMode(ParamMappingMode.CONSTANT.getValue()); roundCount.setValue(executeConfig.getRoundCount()); -- Gitee