From 55665a160488f4285f1d98b47652f0ace08d8159 Mon Sep 17 00:00:00 2001 From: Jason Gerlowski Date: Tue, 26 Sep 2023 07:15:04 -0400 Subject: [PATCH] Default to Solr 8.11 for e2e tests (#632) SOLR-16933 has been fixed for 9.4, but still exists in earlier releases in the 9.x line where it causes a number of e2e tests to fail their assertions. This commit is meant to workaround this problem until a 9.4 docker image is available by defaulting the e2e tests to Solr 8.11.2 --- tests/scripts/manage_e2e_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/manage_e2e_tests.sh b/tests/scripts/manage_e2e_tests.sh index d6a3b5e1..56257dcf 100755 --- a/tests/scripts/manage_e2e_tests.sh +++ b/tests/scripts/manage_e2e_tests.sh @@ -76,7 +76,7 @@ if [[ -z "${KUBERNETES_VERSION:-}" ]]; then KUBERNETES_VERSION="v1.26.6" fi if [[ -z "${SOLR_IMAGE:-}" ]]; then - SOLR_IMAGE="${SOLR_VERSION:-9.3}" + SOLR_IMAGE="${SOLR_VERSION:-8.11.2}" fi if [[ "${SOLR_IMAGE}" != *":"* ]]; then SOLR_IMAGE="solr:${SOLR_IMAGE}"