bkossakowska commented on code in PR #31457:
URL: https://github.com/apache/airflow/pull/31457#discussion_r1224342150
##########
airflow/providers/google/cloud/operators/bigquery.py:
##########
@@ -116,6 +119,9 @@ def get_link(
if len(job_ids) < self.index:
return None
job_id = job_ids[self.index]
+ # converts project_id:location.job_id to project_id:location:job_id
+ if job_id:
+ job_id = str(job_id).replace(".", ":")
Review Comment:
the problem does not currently exist
--
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]