ashb commented on issue #53447:
URL: https://github.com/apache/airflow/issues/53447#issuecomment-3084302166

   @opeida In this case, the fix is to change your trigger code from this:
   
   
   ```python
               hook = BigQueryHook(gcp_conn_id=self.gcp_conn_id, 
use_legacy_sql=False)
   ```
   
   to this
   
   ```python
               hook = await 
sync_to_async(BigQueryHook)(gcp_conn_id=self.gcp_conn_id, use_legacy_sql=False)
   ```


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