Flask: Server becomes unresponsive after some time Flask: Server becomes unresponsive after some time flask flask

Flask: Server becomes unresponsive after some time


I had the same issue. It's common in django/flask apps to hang when running as python server.py, because this in not an optimal environment for them. Only use it for testing purpose. When you're done with it and want to release, you should put it behind a wsgi/uwsgi + apache/nginx and your problem will go away.

http://flask.pocoo.org/docs/0.10/deploying/uwsgi/

http://flask.pocoo.org/docs/1.0/deploying/uwsgi/