5 months ago
All webhooks are received by processor but not actually processing to main/runners or anywhere. They're not registering on redis either. This is with the original, untampered deployment.
I added in N8N_TRUST_PROXY variable to try and help. I also set
N8N_DISABLE_PRODUCTION_MAIN_PROCESS to false for the code runner, worker, and webhook as a last resort.
Even then, i get no processing webhooks. It's just dead and won't work.2 Replies
5 months ago
I found the issue!
In the worker, there was a trailing equal sign.
N8N_PAYLOAD_SIZE_MAX="${{main.N8N_PAYLOAD_SIZE_MAX=}}"it was leading to an empty string and a nonexistent payload size.
Updating it to this by removing the equal sign made it work.
N8N_PAYLOAD_SIZE_MAX="${{main.N8N_PAYLOAD_SIZE_MAX}}"
It's obviously just a mistake that's virtually impossible to spot. Only saw it when manually hardcoding payload sizes as a test. But it should be updated in your template to avoid this for future deployments for everyone as it took a few days of tinkering to figure out and multiple reinstalls.
Thanks! Excited to finally have a stellar build for multiworker setup.
I found the issue! In the worker, there was a trailing equal sign. ```markdown N8N_PAYLOAD_SIZE_MAX="${{main.N8N_PAYLOAD_SIZE_MAX=}}" ``` it was leading to an empty string and a nonexistent payload size. Updating it to this by removing the equal sign made it work. ```markdown N8N_PAYLOAD_SIZE_MAX="${{main.N8N_PAYLOAD_SIZE_MAX}}" ``` It's obviously just a mistake that's virtually impossible to spot. Only saw it when manually hardcoding payload sizes as a test. But it should be updated in your template to avoid this for future deployments for everyone as it took a few days of tinkering to figure out and multiple reinstalls. Thanks! Excited to finally have a stellar build for multiworker setup.
5 months ago
Thank you! It's fixed and updated now 🙂
Status changed to Awaiting User Response Railway • 5 months ago
5 months ago
This thread has been marked as solved automatically due to a lack of recent activity. Please re-open this thread or create a new one if you require further assistance. Thank you!
Status changed to Solved Railway • 5 months ago

