[WARNING] Worker with pid 10 was terminated due to signal 9
My application is kinda terminated. The set up of the application is like this when i upload the document, i have to wait for the application to process the document. After processing the document, it will return a message. If the document is not process it keeps checking every 15 seconds. I believe this process is somehow terminated. How i solve this. My Application is Flask app
7 Replies
Project ID:
2e76ad14-b13d-4719-8bc7-53e709a4a729
2e76ad14-b13d-4719-8bc7-53e709a4a729
@Brody please help
Rule 5...
#🛂|readme #5
how long would this request take locally
My request usually takes less than a minute
the default gunicorn timeout for requests is 30 seconds
you can add the flag
--timeout 60
to your start command to change the timeout to 60 secondsThanks