18👍
✅
Heroku requests are limited to 30 seconds, if the request take longer than this the router will terminate the request
You can increase the LOG LEVEL of gunicorn to see if there’s some error in your process
12👍
Example of Procfile with timeout increased to 15 sec
web: gunicorn myproject.wsgi --timeout 15 --keep-alive 5 --log-level debug
- How to customize django rest auth password reset email content/template
- Django model inheritance and type check
- Error loading MySQLdb module: libmysqlclient.so.20: cannot open shared object file: No such file or directory
- How do I convert kilometres to degrees in Geodjango/GEOS?
- How to set timeout for urlfetch in Google App Engine?
Source:stackexchange.com