From 2f6f994730bca9a845d6b89245f0405c80e86ca7 Mon Sep 17 00:00:00 2001 From: qhd <1766646056@qq.com> Date: Thu, 25 Jun 2026 14:53:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=A7=E7=BB=AD=E6=89=A7=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- workflow/service/flow/lambda_node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/service/flow/lambda_node.go b/workflow/service/flow/lambda_node.go index 0a5e902..e62fb43 100644 --- a/workflow/service/flow/lambda_node.go +++ b/workflow/service/flow/lambda_node.go @@ -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