[CRITICAL] Worker Timeout

I get the below error:
“[error] could not make HTTP request to instance: connection closed before message completed”
How do I increase the worker timeout.

Hi @thoroughProgrammer

There’s a 60 second idle timeout for HTTP requests. You can’t change that value. You can keep the connection open by sending data continuously/more often; when anything at all is sent over the connection, the 60 second timer resets.

Some ways you can do this include streaming content/responses or by polling or other methods (see 60 second timeout for HTTP server).

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.