Hello, I am receiving simultaneous output from the sub-workflow for success and failure at the same time. How is this possible and how can it be fixed?
What is the error message (if any)?
Please share your workflow
Share the output returned by the last node
Information on your n8n setup
n8n version: Version 2.2.5
Database (default: SQLite): sqlite
n8n EXECUTIONS_PROCESS setting (default: own, main): not sure, probably default
Hi @JSA i think substituting a âWaitâ node on your sub-workflow with a Code node that might implements a delay, this can prevent a n8n bug that throws when a sub-workflow waits, it returns both success and error, let me know if this helps.
Ah i see @JSA just ensure the sub-workflow only ever reaches an end once, and prevent it from completing normally and throwing an error. Either catch or convert errors inside the sub-workflow, so the Execute Workflow node returns one clear result.
My sub workflow have one single path. So there is another thing/ I search the web and itâs looks like because node have on the same time on âalways Output dataâ and âcontinue on error with error outputâ, itâs caused double path.