Re-opening this question upon request (error: [Errno 10053]), providing the minimal testable example:
import time
from flask import Flask, render_template
app = Flask(__name__, static_folder='static', template_folder='templates')
@app.route('/')
def main():
return render_template('test.html')
@app.route('/test')
def test():
print "Sleeping. Hit Stop button in browser now"
time.sleep(10)
print "Woke up. You should see a stack trace from the problematic exception below."
return render_template('test.html')
if __name__ == '__main__':
app.run()
HTML:
<html>
<body>
<a href="/test">test</a>
</body>
</html>
Guide: Run the app, navigate to localhost:port, click on the link, then hit Stop button in your browser. You should see the exception once the sleep finishes. The sleep is necessary to simulate any sort of activity happening on the server. It could be just a few seconds: if user manages to navigate away from the page - Flask will crash.
socket.error: [Errno 10053] An established connection was aborted by the software in your host machine
Why does the server stop serving the application? What other server can I use for my Flask application to avoid this?