diff --git a/dojo/settings/settings.dist.py b/dojo/settings/settings.dist.py index b82dbfcb0e8..2806c3da9e7 100644 --- a/dojo/settings/settings.dist.py +++ b/dojo/settings/settings.dist.py @@ -490,7 +490,6 @@ def generate_url(scheme, double_slashes, user, password, host, port, path, param 'django.contrib.auth.hashers.MD5PasswordHasher', 'django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher', 'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher', - 'django.contrib.auth.hashers.CryptPasswordHasher', ] SOCIAL_AUTH_PIPELINE = ( @@ -1700,10 +1699,3 @@ def saml2_attrib_map_format(dict): # Reference issue: https://github.com/jazzband/django-polymorphic/issues/229 warnings.filterwarnings("ignore", message="polymorphic.base.ManagerInheritanceWarning.*") warnings.filterwarnings("ignore", message="PolymorphicModelBase._default_manager.*") - - -# TODO - these warnings needs to be removed after all warnings have been removed -if DEBUG: - from django.utils.deprecation import RemovedInDjango50Warning - warnings.filterwarnings("ignore", category=RemovedInDjango50Warning) - warnings.filterwarnings("ignore", message="unclosed file .+")