The GitHub Actions job "[main] Scheduled CI upgrade check" on airflow.git/main has failed. Run started by GitHub user potiuk (triggered by potiuk).
Head commit for run: c37960d53250efee4241abd12f5a8456281fbbee / Kaxil Naik <[email protected]> Fix ASYNC110 violation in edge3 worker (#66192) PR #66144 added a `while job.is_running: await sleep(0.1)` polling loop to ensure the supervisor task has fully ended after results were grabbed from the queue. This trips ruff's ASYNC110 lint and is now failing the static-checks job on every PR. Apply the same pattern used in PR #66157 for RedshiftDataTrigger: refactor to `while True: if not <cond>: break; await sleep(...)`. Same behaviour, ASYNC110-clean. The proper fix (asyncio.Event signalled by the supervisor on completion) is a larger change and can land separately. Report URL: https://github.com/apache/airflow/actions/runs/25205952186 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
