This is an automated email from the ASF dual-hosted git repository.
fgerlits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 7c6464707 MINIFICPP-2216 Fix failing proxy setup in docker tests
7c6464707 is described below
commit 7c64647076943c2c3edd2e42cdaa76746f2d640d
Author: Martin Zink <[email protected]>
AuthorDate: Wed Sep 13 11:38:16 2023 +0200
MINIFICPP-2216 Fix failing proxy setup in docker tests
Signed-off-by: Ferenc Gerlits <[email protected]>
This closes #1655
---
docker/test/integration/cluster/ImageStore.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/test/integration/cluster/ImageStore.py
b/docker/test/integration/cluster/ImageStore.py
index a1da6f2ee..95f5f4675 100644
--- a/docker/test/integration/cluster/ImageStore.py
+++ b/docker/test/integration/cluster/ImageStore.py
@@ -100,7 +100,7 @@ class ImageStore:
echo 'acl authenticated proxy_auth REQUIRED' >>
/etc/squid/squid.conf && \
echo 'http_access allow authenticated' >>
/etc/squid/squid.conf && \
echo 'http_port {proxy_port}' >> /etc/squid/squid.conf
- """.format(base_image='ubuntu/squid:5.6-22.10_beta',
proxy_username='admin', proxy_password='test101', proxy_port='3128'))
+ """.format(base_image='ubuntu/squid:5.2-22.04_beta',
proxy_username='admin', proxy_password='test101', proxy_port='3128'))
return self.__build_image(dockerfile)