We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0006c8 commit 201c193Copy full SHA for 201c193
appengine/standard_python37/cloudsql/main_mysql.py
@@ -34,7 +34,7 @@ def main():
34
# If deployed, use the local socket interface for accessing Cloud SQL
35
unix_socket = '/cloudsql/{}'.format(db_connection_name)
36
cnx = pymysql.connect(user=db_user, password=db_password,
37
- host=unix_socket, db=db_name)
+ unix_socket=unix_socket, db=db_name)
38
else:
39
# If running locally, use the TCP connections instead
40
# Set up Cloud SQL Proxy (cloud.google.com/sql/docs/mysql/sql-proxy)
0 commit comments