pyfedi/app/errors/handlers.py
rimu 2d6e175092 remove 404 handler
a lot of 404s are just images in /static/* and it doesn't make sense to waste cpu cycles presenting a nice page. Also rendering a page requires populating g.site which means hitting the DB.
2024-04-10 08:43:34 +12:00

16 lines
552 B
Python

from flask import render_template
from app import db
from app.errors import bp
# 404 error handler removed because a lot of 404s are just images in /static/* and it doesn't make sense to waste cpu cycles presenting a nice page.
# Also rendering a page requires populating g.site which means hitting the DB.
# @bp.app_errorhandler(404)
# def not_found_error(error):
# return render_template('errors/404.html'), 404
@bp.app_errorhandler(500)
def internal_error(error):
db.session.rollback()
return render_template('errors/500.html'), 500