Traceback not provided after upgrading to Django 5

I upgraded my django 4.1 to django 5.1.3, and sometimes the admin error emails are coming without traceback.

Here is part of the email:

Internal Server Error: /go

Report at /go
Internal Server Error: /go

Request Method: GET
Request URL: https://[domain]/whatever
Django Version: 5.1.3
Python Executable: /usr/local/bin/python3.11
Python Version: 3.11.10
Python Path: ['/app', '/app', '/usr/local/bin', '/usr/local/lib/python311.zip', '/usr/local/lib/python3.11', '/usr/local/lib/python3.11/lib-dynload', '/usr/local/lib/python3.11/site-packages']
Server time: Tue, 11 Feb 2025 08:04:21 -0500
Installed Applications:
[long list]

Traceback (most recent call last):
 None


Request information:
USER: demo

GET:

POST: No POST data

FILES: No FILES data

The server doesnt show anything special, just a Internal Server Error. Memory is good and cpu also.

Some database errors may not raise full tracebacks if they occur in places where Django does not directly handle them. Check your database logs to see if an issue occurs at the database level

Back to Top