From 661972cd5a8a208d39d58c87be694355a17bef7e Mon Sep 17 00:00:00 2001 From: ebo Date: Fri, 26 Jun 2020 12:51:06 +0100 Subject: netconf-pnp-simulator: fix supervisor patching failure Issue-ID: INT-1639 Change-Id: I28980712fc4b4bff6100ba97489958c0428be26d Signed-off-by: ebo --- test/mocks/netconf-pnp-simulator/engine/Dockerfile | 3 ++- test/mocks/netconf-pnp-simulator/engine/container-tag.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/mocks/netconf-pnp-simulator/engine/Dockerfile b/test/mocks/netconf-pnp-simulator/engine/Dockerfile index 3afca4b6d..fb91d0053 100644 --- a/test/mocks/netconf-pnp-simulator/engine/Dockerfile +++ b/test/mocks/netconf-pnp-simulator/engine/Dockerfile @@ -168,7 +168,8 @@ ENV PYTHONPATH=/opt/lib/python3.7/site-packages COPY patches/supervisor/ /usr/src/patches/supervisor/ RUN set -eux \ - && pip install loguru supervisor supervisor virtualenv \ + # the patches for supervisor package only work for 4.1 release + && pip install --no-cache-dir loguru supervisor==4.1.0 virtualenv \ && cd /usr/local/lib/python3.7/site-packages \ && for p in /usr/src/patches/supervisor/*.patch; do patch -p1 -i $p; done diff --git a/test/mocks/netconf-pnp-simulator/engine/container-tag.yaml b/test/mocks/netconf-pnp-simulator/engine/container-tag.yaml index c76aa8f61..9e6abab0d 100644 --- a/test/mocks/netconf-pnp-simulator/engine/container-tag.yaml +++ b/test/mocks/netconf-pnp-simulator/engine/container-tag.yaml @@ -1 +1 @@ -tag: "2.8.5" +tag: "2.8.6" -- cgit 1.2.3-korg