fix MySQL connection parameters

This commit is contained in:
Jan Dittberner 2015-01-01 22:52:21 +01:00
parent a3e766045e
commit ff83795916
1 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,9 @@ def _get_connection():
host=settings.GVAMYSQL_DBADMIN_HOST,
port=settings.GVAMYSQL_DBADMIN_PORT,
user=settings.GVAMYSQL_DBADMIN_USER,
password=settings.GVAMYSQL_DBADMIN_PASSWORD)
passwd=settings.GVAMYSQL_DBADMIN_PASSWORD,
db='mysql',
)
@shared_task