This is an automated email from the ASF dual-hosted git repository.
kkarantasis pushed a commit to branch 2.6
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.6 by this push:
new 24469c2 MINOR: Upgrade ducktape to version 0.7.11 (#9932)
24469c2 is described below
commit 24469c28a0cea49aaedf8bf33ff33c403437e28b
Author: Stanislav Vodetskyi <[email protected]>
AuthorDate: Fri Jan 22 20:27:56 2021 -0800
MINOR: Upgrade ducktape to version 0.7.11 (#9932)
ducktape 0.7.11 fixes a bug where a unicode exception message would cause
test runner to hang up and never finish.
This change should be backported to all the branches using ducktape 0.7.10
Reviewers: Konstantine Karantasis <[email protected]>
---
tests/docker/Dockerfile | 2 +-
tests/setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index af2fae8..cd1918d 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -34,7 +34,7 @@ LABEL ducker.creator=$ducker_creator
# Update Linux and install necessary utilities.
RUN apt update && apt install -y sudo netcat iptables rsync unzip wget curl jq
coreutils openssh-server net-tools vim python-pip python-dev libffi-dev
libssl-dev cmake pkg-config libfuse-dev iperf traceroute && apt-get -y clean
RUN python -m pip install -U pip==9.0.3;
-RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm
ipaddress enum34 && pip install --upgrade ducktape==0.7.10
+RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm
ipaddress enum34 && pip install --upgrade ducktape==0.7.11
# Set up ssh
COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index 987055f..3f2f198 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -51,7 +51,7 @@ setup(name="kafkatest",
license="apache2.0",
packages=find_packages(),
include_package_data=True,
- install_requires=["ducktape==0.7.10", "requests==2.22.0"],
+ install_requires=["ducktape==0.7.11", "requests==2.22.0"],
tests_require=["pytest", "mock"],
cmdclass={'test': PyTest},
)