Disabled database hostname validator to allow for % host

This commit is contained in:
Marc Aymerich 2017-07-07 09:30:35 +00:00
parent 6fadf0c631
commit ea9c398de4
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ DATABASES_DEFAULT_TYPE = Setting('DATABASES_DEFAULT_TYPE',
DATABASES_DEFAULT_HOST = Setting('DATABASES_DEFAULT_HOST',
'localhost',
validators=[validate_hostname],
# validators=[validate_hostname],
)