aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorebo <eliezio.oliveira@est.tech>2020-06-26 12:51:06 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-07-02 13:35:52 +0000
commit661972cd5a8a208d39d58c87be694355a17bef7e (patch)
treebfe066eb5c5012b581f5ceca2aa428e3d455c168
parentee1fc1603d774676e80bcef6c96946efa87965ce (diff)
netconf-pnp-simulator: fix supervisor patching failure
Issue-ID: INT-1639 Change-Id: I28980712fc4b4bff6100ba97489958c0428be26d Signed-off-by: ebo <eliezio.oliveira@est.tech>
-rw-r--r--test/mocks/netconf-pnp-simulator/engine/Dockerfile3
-rw-r--r--test/mocks/netconf-pnp-simulator/engine/container-tag.yaml2
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"