mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
fix zombie processes
Temporary fix for zombie processes.
This commit is contained in:
parent
ce9498d06d
commit
bb9fe83836
1 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,9 @@ For more information on this file, see
|
||||||
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
|
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import signal
|
||||||
|
signal.signal(signal.SIGCHLD, signal.SIG_IGN)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from django.core.wsgi import get_wsgi_application
|
from django.core.wsgi import get_wsgi_application
|
||||||
|
|
Loading…
Reference in a new issue