Skip to content

Commit

Permalink
Correcting the transfer config name. (#25719)
Browse files Browse the repository at this point in the history
  • Loading branch information
prajyotnaik3 committed Oct 2, 2022
1 parent c6e9cdb commit fa0cb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/hooks/bigquery_dts.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def delete_transfer_config(
client = self.get_conn()
project = f"projects/{project_id}"
if self.location:
project = f"/{project}/locations/{self.location}"
project = f"{project}/locations/{self.location}"

name = f"{project}/transferConfigs/{transfer_config_id}"
return client.delete_transfer_config(
Expand Down

0 comments on commit fa0cb36

Please sign in to comment.