Install Version
Apache
- apr-1.6.5
- apr-util-1.6.1
- httpd-2.4.7
- mod_wsgi-4.6.8
- pcre-8.32
Python
- 3.8.5
Django
- 3.1.2
Apache http.conf
Listen 3600
WSGISocketPrefix /var/run/wsgi
<VirtualHost *:3600>
WSGIDaemonProcess project_name display-name=project_name
WSGIScriptAlias / /data/project_name/config/wsgi.py process-group=api application-group=api
ServerName project_name
<Directory /data/project_name/config>
Order allow,deny
Allow from all
Require all granted
<Files wsgi.py>
Require all granted
</Files>
</Directory>
</VirtualHost>
Error log
Exception ignored in: <function Local.__del__ at 0x7fd675a70a60>
Traceback (most recent call last):
File "/data/venv/api/lib/python3.8/site-packages/asgiref/local.py", line 96, in __del__
NameError: name 'TypeError' is not defined
The above error log is coming out over and over and over again.
I don't know why there is an asgi related error when I don't use asgi.
TypeError
is a Python built-in. Possibly, this is a race while the Python interpreter is shutting down? – Excoriationpython3-distupgrade
. Maybe this package update causes the issue? – Beneluxpython3-distupgrade
didn't help. – Geoponics