fix: 继续执行

This commit is contained in:
2026-06-25 14:53:45 +08:00
parent bbd62c082d
commit 2f6f994730
+1 -1
View File
@@ -38,7 +38,7 @@ func SubFlowLambda(ctx context.Context, input any) (any, error) {
// 1. 类型断言(和其他节点保持一致的入参结构)
nodeExecInput, ok := input.(*flowDto.NodeExecutionInput)
if !ok {
return nil, fmt.Errorf("子流程节点入参类型错误,期望*flowDto.NodeExecutionInput,实际%T", input)
return nil, fmt.Errorf("子流程节点入参类型错误a,期望*flowDto.NodeExecutionInput,实际%T", input)
}
// 2. 解析子流程配置
subFlowConfig := nodeExecInput.Config.SubConfig