From 6baff7eb27e873f66771d94ef2d0cc09622ceaf0 Mon Sep 17 00:00:00 2001 From: Joe Roberts Date: Thu, 7 Nov 2024 17:40:07 -0800 Subject: [PATCH] Bump OnEarth to 2.8.6 --- docker/test/Dockerfile | 4 ++-- src/test/test_mrfgen.py | 2 +- version.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/test/Dockerfile b/docker/test/Dockerfile index 01abd184..8c21c295 100755 --- a/docker/test/Dockerfile +++ b/docker/test/Dockerfile @@ -1,5 +1,5 @@ # This Dockerfile must be run from source root -FROM nasagibs/onearth-deps:2.8.5 +FROM nasagibs/onearth-deps:2.8.6 ARG MRF_VERSION=3.0.1 ARG GDAL_VERSION=3.6.4 @@ -231,7 +231,7 @@ RUN perl -pi -e "s/LogLevel warn/LogLevel debug/g" /etc/httpd/conf/httpd.conf && RUN cp /home/oe2/onearth/docker/00-mpm.conf /etc/httpd/conf.modules.d/ && \ cp /home/oe2/onearth/docker/10-worker.conf /etc/httpd/conf.modules.d/ -ENV ONEARTH_VERSION=2.8.5 +ENV ONEARTH_VERSION=2.8.6 # Generate SSL certs RUN /usr/libexec/httpd-ssl-gencerts diff --git a/src/test/test_mrfgen.py b/src/test/test_mrfgen.py index aaf31623..b0204e94 100755 --- a/src/test/test_mrfgen.py +++ b/src/test/test_mrfgen.py @@ -2120,7 +2120,7 @@ def test_generate_mrf(self): # This part of the test previously looked for a triplet of files in dataset.GetFileList(). if DEBUG: - print('Files: {0}, {1}'.format(self.output_ppg, self.output_idx)) + print('Files: {0}, {1}'.format(self.output_pjg, self.output_idx)) self.assertTrue(os.path.isfile(self.output_pjg), "MRF PJG generation failed") self.assertTrue(os.path.isfile(self.output_idx), "MRF IDX generation failed") diff --git a/version.sh b/version.sh index d416c6c2..917cb396 100755 --- a/version.sh +++ b/version.sh @@ -1,7 +1,7 @@ #!/bin/sh # The onearth version to use in the Docker image tag (e.g. onearth-wms:{ONEARTH_VERSION}-{ONEARTH_RELEASE}). -export ONEARTH_VERSION=2.8.5 # This must be manually incremented with each OnEarth version +export ONEARTH_VERSION=2.8.6 # This must be manually incremented with each OnEarth version # The onearth release to use in the Docker image tag (e.g. onearth-wms:{ONEARTH_VERSION}-{ONEARTH_RELEASE}). export ONEARTH_RELEASE=1 # This must be manually incremented with each OnEarth build