From 737bdcab7f3a151cc462c18711afab9f7cb0d57c Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Fri, 27 Jan 2023 15:21:49 +0100 Subject: [PATCH] Last minute fix, remove hardcoded database from mysql connection. --- lolafect/connections.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lolafect/connections.py b/lolafect/connections.py index 223c9f4..a333653 100644 --- a/lolafect/connections.py +++ b/lolafect/connections.py @@ -257,8 +257,7 @@ def connect_to_mysql( host=mysql_host, port=mysql_port, user=mysql_credentials["user"], - password=mysql_credentials["password"], - database="dw_xl", + password=mysql_credentials["password"] ) # Customizing this attributes to retrieve them later in the flow