obarisk commented on issue #53525:
URL: https://github.com/apache/airflow/issues/53525#issuecomment-3092276051

   weird, in the docker file, it's
   
   ```sh
   docker run -it --rm --entrypoint /bin/bash apache/airflow:3.0.3-python3.12 
-c "head -n 440 
/home/airflow/.local/lib/python3.12/site-packages/airflow/providers/google/cloud/transfers/gcs_to_bigquery.py
 | tail -n 15"
   ```
   
   ```
   if job_type in job_configuration:
       for table_prop in tables_prop:
           if table_prop in job_configuration[job_type]:
               table = job_configuration[job_type][table_prop]
               persist_kwargs = {
                   "context": context,
                   "task_instance": self,
                   "table_id": table,
               }
               if not isinstance(table, str):
                   persist_kwargs["table_id"] = table["tableId"]
                   persist_kwargs["dataset_id"] = table["datasetId"]
                   persist_kwargs["project_id"] = table["projectId"]
               BigQueryTableLink.persist(**persist_kwargs)
   
   ```


-- 
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]

Reply via email to