工作流修复

This commit is contained in:
dengqichen 2025-10-31 15:22:41 +08:00
parent 19a1bc86ff
commit 8a9c7113e9

View File

@ -85,7 +85,7 @@ public abstract class BaseNodeDelegate<I, O> implements JavaDelegate {
log.info("Stored NodeContext for: {}", currentNodeId); log.info("Stored NodeContext for: {}", currentNodeId);
// 7. 设置节点执行状态为成功 // 7. 设置节点执行状态为成功
setExecutionStatus(execution, WORKFLOW_NODE_EXECUTION_STATE_SUCCESS); setExecutionStatus(execution, WORKFLOW_NODE_EXECUTION_STATE_SUCCESS);
} catch (Exception e) { } catch (Exception e) {
BaseNodeOutputs failureNodeOutputs = new BaseNodeOutputs(); BaseNodeOutputs failureNodeOutputs = new BaseNodeOutputs();
@ -288,4 +288,4 @@ public abstract class BaseNodeDelegate<I, O> implements JavaDelegate {
log.debug("Cleared previous node status for node: {}", execution.getCurrentActivityId()); log.debug("Cleared previous node status for node: {}", execution.getCurrentActivityId());
} }
} }