The GitHub Actions job "Tests (AMD)" on airflow.git/fix/async110-edge3-worker 
has succeeded.
Run started by GitHub user sanwar47 (triggered by potiuk).

Head commit for run:
48d8e25553dd6c20f527de8163991591b4604979 / Sohail Anwar <[email protected]>
Fix ASYNC110 violation in edge3 worker

The polling loop that waits for the supervisor process to exit used:

    while job.is_running:
        await sleep(0.1)

This trips ruff ASYNC110 (await inside a while-condition loop).
Refactor to the ASYNC110-clean pattern used elsewhere:

    while True:
        if not job.is_running:
            break
        await sleep(0.1)

Same behaviour, passes static-checks CI.

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

With regards,
GitHub Actions via GitBox


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

Reply via email to