Skip to content

Commit

Permalink
Fix unix_socket connection (#1812)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jxio authored Nov 6, 2024
1 parent 4a84106 commit 5337e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/payment-jobs/services/data_warehouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def getconn(connector: Connector, db_config: DBConfig) -> object:
instance_connection_string = db_config.unix_sock.replace("/cloudsql/", "")
return connector.connect(
instance_connection_string=instance_connection_string,
ip_type="private",
ip_type="public",
user=db_config.user,
password=db_config.password,
db=db_config.database,
Expand Down

0 comments on commit 5337e37

Please sign in to comment.