Add property reputation handling

This commit is contained in:
Aaron Kimbre
2022-03-31 18:05:28 -05:00
parent 560afa5e0d
commit 7f992a5dfa
6 changed files with 90 additions and 13 deletions

View File

@@ -75,14 +75,14 @@ def create_app():
if cdclient is not None:
cdclient.close()
@app.errorhandler(Exception)
def handle_exception(e):
app.logger.error(e)
# pass through HTTP errors
if isinstance(e, HTTPException):
return e
# now you're handling non-HTTP exceptions only
return render_template("status_codes/500.html.j2", exception=e), 500
# @app.errorhandler(Exception)
# def handle_exception(e):
# app.logger.error(e)
# # pass through HTTP errors
# if isinstance(e, HTTPException):
# return e
# # now you're handling non-HTTP exceptions only
# return render_template("status_codes/500.html.j2", exception=e), 500
# add the commands to flask cli
app.cli.add_command(init_db)