GitHub user ashb added a comment to the discussion: Remote Logging to Azure
Blob Storage Still Broke in Airflow 3.0.4
@ahipp13 Okay, yeah my fix was incomplete. See #54679 for the actual fix which
will be in 3.0.6. If you are okay applying a patch (and assuming you are using
Docker) then this sort of thing should get you unblocked.:
```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/54679.patch \
| filterdiff -p1 -i 'task-sdk/src/airflow/*' | patch -p4 -u --verbose
USER airflow
```
(You'll need to change a few details in that to make it work like paths or
users, but hopefully that gives you the details)
GitHub link:
https://github.com/apache/airflow/discussions/54489#discussioncomment-14162521
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]