Hey fellow flowgrammers,
I get no output in my editor nodes. When I execute a node, it gives “No output data returned.”
I have to go to my execution node and then use it in the editor.
It is taking more time now. I am on self-hosting.
Anyone experiencing the same?
Yes, this is expected in recent n8n versions.
When you’re running in “queue mode” or with EXECUTIONS_PROCESS=queue, node output won’t show live in the editor.
Instead, you have to check results in the Executions tab. This helps with stability and performance, but can feel slower during development.
Fix for live output (optional):
Set the following in your environment:
EXECUTIONS_PROCESS=main
Then restart n8n.
You’ll see node outputs directly in the editor again.
Awesome, you are a lifesaver. Tnx for your quick response.