Skip to content

Commit c982a00

Browse files
committed
fix: batchEditNodeContent bug
1 parent c38faa5 commit c982a00

File tree

1 file changed

+1
-1
lines changed
  • dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/restful

1 file changed

+1
-1
lines changed

dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/restful/FlowRestfulApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ public Message batchEditNodeContent(@RequestBody BatchEditNodeContentRequest bat
451451
LOGGER.info("batchEditNodeContent params is {}",batchEditNodeContentRequest);
452452
BatchEditNodeContentResponse batchEditNodeContentResponse = flowService.batchEditNodeContent(batchEditNodeContentRequest,ticketId);
453453

454-
if(batchEditNodeContentResponse !=null && !CollectionUtils.isNotEmpty(batchEditNodeContentResponse.getFailNodeName())){
454+
if(batchEditNodeContentResponse !=null && CollectionUtils.isNotEmpty(batchEditNodeContentResponse.getFailNodeName())){
455455
return Message.error("批量编辑节点失败").data("data",batchEditNodeContentResponse);
456456
}
457457

0 commit comments

Comments
 (0)