Skip to content

Commit

Permalink
update processor to fix broken download URLs (#23299)
Browse files Browse the repository at this point in the history
merging because it has the "Ok to merge" and all non-skipped tests passed!
  • Loading branch information
jackwotherspoon committed Apr 28, 2022
1 parent 0c9c1cf commit 1f32603
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airflow/providers/google/cloud/hooks/cloud_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,8 @@ def _download_sql_proxy_if_needed(self) -> None:
return
system = platform.system().lower()
processor = os.uname().machine
if processor == "x86_64":
processor = "amd64"
if not self.sql_proxy_version:
download_url = CLOUD_SQL_PROXY_DOWNLOAD_URL.format(system, processor)
else:
Expand Down

0 comments on commit 1f32603

Please sign in to comment.