Simple HTTP Post node getting stuck.
I have a brand new Windmill setup installed (in docker with postgres-17) and I have a flow that takes in a webhook, sends and receives a message from an AI agent, then tries to send an HTTP Post message. It hangs at the HTTP Post:
Queue position: 4 (Waiting for an available worker)
. I have nothing else running, so I'm not sure where it's stalling. I'm running a stand-alone setup. Am I missing something?3 Replies
Hmm, the http post node can have
chromium
or nativets
tags, and the default worker does not run those tags. I can't edit it either as that's an Enterprise feature. :/ Seems sort of broken out-of-the-boxyou don't need to assign a custom tag, it's optional
and nativets is auto set for the native workers
Yeah, it didn't work for me for some reason. HTTP Post nodes got stuck in queue waiting. After adding the
WORKER_TAGS=default,nativets
env variable, then it started to work.