From d3083082c369c98f5bddbe73fb4a15db33f68e03 Mon Sep 17 00:00:00 2001 From: Raphael MESSNER Date: Wed, 30 Oct 2019 08:16:37 +0100 Subject: [PATCH] Downgrade kombu version --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f1bf0330d5..e6635abd94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,7 @@ RUN set -ex \ && pip install ndg-httpsclient \ && pip install pyasn1 \ && pip install apache-airflow[crypto,celery,postgres,hive,jdbc,mysql,ssh${AIRFLOW_DEPS:+,}${AIRFLOW_DEPS}]==${AIRFLOW_VERSION} \ + && pip install 'kombu==4.6.3' --force-reinstall \ && pip install 'redis==3.2' \ && if [ -n "${PYTHON_DEPS}" ]; then pip install ${PYTHON_DEPS}; fi \ && apt-get purge --auto-remove -yqq $buildDeps \