rawwar commented on issue #49575:
URL: https://github.com/apache/airflow/issues/49575#issuecomment-2854886331
> Sorry, I haven't been able to make it work, I probably should have
mentioned that we use astro to do our builds (`astro dev restart`), and adding
the above to my requirements.txt gives me an error about git not being
installed. I did try adding version 6.3.0rc1, but that broke our connections
that worked with 6.2.2. Our Snowflake connections are in AWS Parameter Store,
and 6.3.0rc1 now gives me the "Could not deserialize key data..." error. If I
rebuild with 6.2.2 the connections work fine. That sounds like a
separate-but-related issue. I'm happy to try something else, but I seem to be
stuck.
If you are using Astro, the easy way is to apply the patch.
add following to your Dockerfile:
```
USER root
RUN apt update && apt install -y patch patchutils
RUN set -ex; \
curl
https://patch-diff.githubusercontent.com/raw/apache/airflow/pull/49467.patch \
| filterdiff -p1 -i 'airflow*' \
| patch -u -p 2 -d /usr/local/lib/python3.11/site-packages/airflow
```
Recheck the Python version "python3.11". Depending on the runtime version
you are using, it will change. so, you might need to update the path
--
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]