fix: incorrect workflow max call depth (#4759)

This commit is contained in:
Yeuoly 2024-05-29 14:52:28 +08:00 committed by GitHub
parent e1cd9aef8f
commit d4cd6149ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,7 +61,7 @@ class ToolNode(BaseNode):
user_id=self.user_id, user_id=self.user_id,
workflow_id=self.workflow_id, workflow_id=self.workflow_id,
workflow_tool_callback=DifyWorkflowCallbackHandler(), workflow_tool_callback=DifyWorkflowCallbackHandler(),
workflow_call_depth=self.workflow_call_depth + 1 workflow_call_depth=self.workflow_call_depth,
) )
except Exception as e: except Exception as e:
return NodeRunResult( return NodeRunResult(