You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ge...@apache.org on 2023/09/26 11:15:10 UTC

[solr-operator] branch main updated: Default to Solr 8.11 for e2e tests (#632)

This is an automated email from the ASF dual-hosted git repository.

gerlowskija pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 55665a1  Default to Solr 8.11 for e2e tests (#632)
55665a1 is described below

commit 55665a160488f4285f1d98b47652f0ace08d8159
Author: Jason Gerlowski <ge...@apache.org>
AuthorDate: Tue Sep 26 07:15:04 2023 -0400

    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 d6a3b5e..56257dc 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}"