From d5fbb2d3b69e1c39f744ace0414fd3329a6fad8e Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 15 May 2018 14:57:47 -0400 Subject: [PATCH] remove md5 password hashing in dev --- awx/settings/development.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/awx/settings/development.py b/awx/settings/development.py index 9f1d916bc0..e7dc0152f6 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -103,13 +103,6 @@ if 'django_jenkins' in INSTALLED_APPS: INSTALLED_APPS += ('rest_framework_swagger',) -# Much faster than the default -# https://docs.djangoproject.com/en/1.6/topics/auth/passwords/#how-django-stores-passwords -PASSWORD_HASHERS = ( - 'django.contrib.auth.hashers.MD5PasswordHasher', - 'django.contrib.auth.hashers.PBKDF2PasswordHasher', -) - # Configure a default UUID for development only. SYSTEM_UUID = '00000000-0000-0000-0000-000000000000'