potiuk commented on issue #63043: URL: https://github.com/apache/airflow/issues/63043#issuecomment-4017024043
The original error from #61913 is gone (Thanks @o-nikolas and @JegadeeshManickam). The way to reproduce it: 1) checkout `v2-11-test` branch 2) install breeze from that branch `uv tool -e ./dev/breeze` 3) Run `docker pull apache/airflow:2.11.1` 4) Run `breeze testing docker-compose-tests --image-name apache/airflow:2.11.1` -> succeeds 5) Run this. to replace celery provider with 3.17.0 in 2.11.1 image: ``` docker build . --progress plain --load -f - -t new-2-11-1-image <<EOF FROM apache/airflow:2.11.1 RUN pip install apache-airflow-providers-celery==3.17.0 EOF ``` 6) Run `breeze testing docker-compose-tests --image-name new-2-11-1-image` -> fails (same error as above) -- 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]
