This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.16 in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit 6f43c3e6e380bc520524e3c99cf054c580e0b442 Author: ZhangJian He <[email protected]> AuthorDate: Wed Jun 12 15:06:32 2024 +0800 test: update etcd build image version (#4429) Signed-off-by: ZhangJian He <[email protected]> --- .test-infra/scripts/pre-docker-tests.sh | 2 +- .../java/org/apache/bookkeeper/metadata/etcd/testing/EtcdContainer.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.test-infra/scripts/pre-docker-tests.sh b/.test-infra/scripts/pre-docker-tests.sh index d2c812ab7a..911ab1958b 100755 --- a/.test-infra/scripts/pre-docker-tests.sh +++ b/.test-infra/scripts/pre-docker-tests.sh @@ -30,4 +30,4 @@ docker system prune -f # clean up any dangling networks from previous runs docker network prune -f --filter "until=12h" docker system events > docker.debug-info & echo $! > docker-log.pid -docker pull quay.io/coreos/etcd:v3.3 +docker pull quay.io/coreos/etcd:v3.5.14 diff --git a/metadata-drivers/etcd/src/test/java/org/apache/bookkeeper/metadata/etcd/testing/EtcdContainer.java b/metadata-drivers/etcd/src/test/java/org/apache/bookkeeper/metadata/etcd/testing/EtcdContainer.java index 0178e4d2ab..b0a8094207 100644 --- a/metadata-drivers/etcd/src/test/java/org/apache/bookkeeper/metadata/etcd/testing/EtcdContainer.java +++ b/metadata-drivers/etcd/src/test/java/org/apache/bookkeeper/metadata/etcd/testing/EtcdContainer.java @@ -54,7 +54,7 @@ public class EtcdContainer extends GenericContainer<EtcdContainer> { private final String clusterName; public EtcdContainer(String clusterName) { - super("quay.io/coreos/etcd:v3.3"); + super("quay.io/coreos/etcd:v3.5.14"); this.clusterName = clusterName; }
