Flask - Deployment
Given this Flask app snippet running with debug=False:
What will happen if a user visits the root URL and an error occurs inside
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'Hello, Production!'
if __name__ == '__main__':
app.run(debug=False)What will happen if a user visits the root URL and an error occurs inside
home()?