From 6f1fbdb5ca30f608bc2038068934cb314a95fa4f Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Wed, 31 Jan 2024 15:08:39 +0100 Subject: [PATCH] Fix the failed upgrade of kazoo to 2.10.0 --- docker/test/integration/runner/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/test/integration/runner/Dockerfile b/docker/test/integration/runner/Dockerfile index ed8c75ab00f..9199e941476 100644 --- a/docker/test/integration/runner/Dockerfile +++ b/docker/test/integration/runner/Dockerfile @@ -59,6 +59,8 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \ && dockerd --version; docker --version +# kazoo 2.10.0 is broken +# https://s3.amazonaws.com/clickhouse-test-reports/59337/524625a1d2f4cc608a3f1059e3df2c30f353a649/integration_tests__asan__analyzer__[5_6].html RUN python3 -m pip install --no-cache-dir \ PyMySQL \ aerospike==11.1.0 \ @@ -76,7 +78,7 @@ RUN python3 -m pip install --no-cache-dir \ grpcio \ grpcio-tools \ kafka-python \ - kazoo \ + kazoo==2.9.0 \ lz4 \ minio \ nats-py \