when demo-ing, sometimes users would not recieve their data and the server will print IOError: [Errno 32] Broken pipe
probably because While lightweight and easy to use, Flask’s built-in server is not suitable for production as it doesn’t scale well and by default serves only one request at a time.
when demo-ing, sometimes users would not recieve their data and the server will print
IOError: [Errno 32] Broken pipe
probably because While lightweight and easy to use, Flask’s built-in server is not suitable for production as it doesn’t scale well and by default serves only one request at a time.
there are some wrappers which may fix this issue: http://flask.pocoo.org/docs/0.11/deploying/wsgi-standalone/
or may switch to django