ashb commented on PR #54769:
URL: https://github.com/apache/airflow/pull/54769#issuecomment-3209900648
Anyone hitting this on 3.0.5 andwho doesn't want to rollback to 3.0.4: a
work around for now is to manually apply this patch to your Airflow.
If you are using docker to deploy your airflow then something like this
should help hopefully:
```Dockerfile
USER root
RUN apt update && apt install -y patch patchutils
RUN set -ex; \
cd /usr/local/lib/python3.12/site-packages/airflow; \
curl -L
https://patch-diff.githubusercontent.com/raw/apache/airflow/pull/54769.patch \
| filterdiff -p1 -i 'task-sdk/src/airflow/*' | patch -p4 -u --verbose
USER airflow
```
The path to `site-packages` and the user to switch back to at the end would
need adapting to your specific Dockerfile
--
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]