Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kombu version issue #333

Open
dafrenchyman opened this issue Mar 26, 2019 · 1 comment
Open

Kombu version issue #333

dafrenchyman opened this issue Mar 26, 2019 · 1 comment

Comments

@dafrenchyman
Copy link

FYI - I'm not sure if this issue was specific to just me, as I've modified this repository to install everything:

    && pip install apache-airflow[all]==$AIRFLOW_VERSION \
    && pip install airflow-plugins \

But, I ran into an issue with Kombu==4.4.0 This basically broke Celery on the worker nodes on my Kubernetes cluster. I found others that had a similar issue: cookiecutter/cookiecutter-django#1954

I ended up fixing it by running

   && pip install kombu==4.3.0 \

Before installing airflow.

@sdwa0
Copy link

sdwa0 commented Apr 2, 2019

I ran into the same issue too (VersionMismatch for redis-py). I think it is due to the new version of kombu too, more specifically the following change that was released on kombu v4.4.0:
celery/kombu@eb6e4c8

I fixed with a similar change like @dafrenchyman did.
&& pip install 'kombu>=4.2.0,<4.4.0' \

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants