fix MySQL connection parameters
This commit is contained in:
parent
a3e766045e
commit
ff83795916
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@ def _get_connection():
|
||||||
host=settings.GVAMYSQL_DBADMIN_HOST,
|
host=settings.GVAMYSQL_DBADMIN_HOST,
|
||||||
port=settings.GVAMYSQL_DBADMIN_PORT,
|
port=settings.GVAMYSQL_DBADMIN_PORT,
|
||||||
user=settings.GVAMYSQL_DBADMIN_USER,
|
user=settings.GVAMYSQL_DBADMIN_USER,
|
||||||
password=settings.GVAMYSQL_DBADMIN_PASSWORD)
|
passwd=settings.GVAMYSQL_DBADMIN_PASSWORD,
|
||||||
|
db='mysql',
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@shared_task
|
@shared_task
|
||||||
|
|
Loading…
Reference in a new issue