avinashpandeshwar commented on PR #32143:
URL: https://github.com/apache/airflow/pull/32143#issuecomment-1611114408
I can confirm that below change to
`airflow/providers/google/cloud/transfers/bigquery_to_gcs.py` also works, while
keeping @Yaro1 's changes and also respecting the project_id parameter in the
operator.
How this works - For job computation, use project_id parameter if provided,
else use the project_id from the table.
```
return hook.insert_job(
configuration=configuration,
project_id=self.project_id or
configuration["extract"]["sourceTable"]["projectId"],
location=self.location,
job_id=job_id,
timeout=self.result_timeout,
retry=self.result_retry,
nowait=self.deferrable,
)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]