diff options
author | ebo <eliezio.oliveira@est.tech> | 2020-06-26 12:51:06 +0100 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-07-02 13:35:52 +0000 |
commit | 661972cd5a8a208d39d58c87be694355a17bef7e (patch) | |
tree | bfe066eb5c5012b581f5ceca2aa428e3d455c168 /test/mocks/netconf-pnp-simulator/engine | |
parent | ee1fc1603d774676e80bcef6c96946efa87965ce (diff) |
netconf-pnp-simulator: fix supervisor patching failure
Issue-ID: INT-1639
Change-Id: I28980712fc4b4bff6100ba97489958c0428be26d
Signed-off-by: ebo <eliezio.oliveira@est.tech>
Diffstat (limited to 'test/mocks/netconf-pnp-simulator/engine')
-rw-r--r-- | test/mocks/netconf-pnp-simulator/engine/Dockerfile | 3 | ||||
-rw-r--r-- | 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" |