The GitHub Actions job "Tests AMD" on airflow.git/main has succeeded.
Run started by GitHub user potiuk (triggered by potiuk).

Head commit for run:
f5b1eb437f11bb2dedc2273d83894f8c868982c3 / Daniel Standish 
<[email protected]>
Handle trigger calls to get_connection (#55799)

Some [incorrectly-written] triggers may call BaseHook.get_connection without 
wrapping with sync_to_async.

This is naughty behavior because it will block the event loop.  But in 2.x it 
would not cause an error.

In 3.0, however, this results in an error.  It fails in 3.0 because the code to 
hit the API wraps the get_connection call with async_to_sync, which is 
forbidden in the asyncio event loop.

What we do here is try to detect when this happens and when it does, we run it 
through greenback portal which makes it not fail.

Report URL: https://github.com/apache/airflow/actions/runs/17839335680

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to