From 693497673a05dec983d42ba4bee58a6b0e3baa04 Mon Sep 17 00:00:00 2001 From: John Jarvis Date: Mon, 3 Feb 2014 16:42:22 -0500 Subject: [PATCH] remove check for PASS --- lms/envs/aws_migrate.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lms/envs/aws_migrate.py b/lms/envs/aws_migrate.py index b06bb7b13c..2b5a9f15e5 100644 --- a/lms/envs/aws_migrate.py +++ b/lms/envs/aws_migrate.py @@ -21,9 +21,5 @@ DB_OVERRIDES = dict( PORT=os.environ.get('DB_MIGRATION_PORT', DATABASES['default']['PORT']), ) -if not DB_OVERRIDES['PASSWORD']: - raise ImproperlyConfigured("No database password was provided for running " - "migrations. This is fatal.") - for override, value in DB_OVERRIDES.iteritems(): DATABASES['default'][override] = value