root: ignore known warnings
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f496b8b5d7
commit
4cd3466e56
|
@ -55,4 +55,27 @@ else:
|
||||||
workers = int(os.environ.get("WORKERS", default_workers))
|
workers = int(os.environ.get("WORKERS", default_workers))
|
||||||
threads = 4
|
threads = 4
|
||||||
|
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message="defusedxml.lxml is no longer supported and will be removed in a future release.",
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message="defusedxml.cElementTree is deprecated, import from defusedxml.ElementTree instead.",
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message=(
|
||||||
|
"'django_prometheus' defines default_app_config = 'django_prometheus.apps.DjangoPromethe"
|
||||||
|
"usConfig'. Django now detects this configuration automatically. You can remove d"
|
||||||
|
"efault_app_config."
|
||||||
|
),
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message=(
|
||||||
|
"'dbbackup' defines default_app_config = 'dbbackup.apps.DbbackupConfig'. Django now det"
|
||||||
|
"ects this configuration automatically. You can remove default_app_config.",
|
||||||
|
),
|
||||||
|
)
|
||||||
warnings.simplefilter("once")
|
warnings.simplefilter("once")
|
||||||
|
|
25
manage.py
25
manage.py
|
@ -2,9 +2,34 @@
|
||||||
"""Django manage.py"""
|
"""Django manage.py"""
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import warnings
|
||||||
|
|
||||||
from defusedxml import defuse_stdlib
|
from defusedxml import defuse_stdlib
|
||||||
|
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message="defusedxml.lxml is no longer supported and will be removed in a future release.",
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message="defusedxml.cElementTree is deprecated, import from defusedxml.ElementTree instead.",
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message=(
|
||||||
|
"'django_prometheus' defines default_app_config = 'django_prometheus.apps.DjangoPromethe"
|
||||||
|
"usConfig'. Django now detects this configuration automatically. You can remove d"
|
||||||
|
"efault_app_config."
|
||||||
|
),
|
||||||
|
)
|
||||||
|
warnings.filterwarnings(
|
||||||
|
"ignore",
|
||||||
|
message=(
|
||||||
|
"'dbbackup' defines default_app_config = 'dbbackup.apps.DbbackupConfig'. Django now det"
|
||||||
|
"ects this configuration automatically. You can remove default_app_config."
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
defuse_stdlib()
|
defuse_stdlib()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Reference in New Issue