From 6ddce40aff4980163dbdac591f25f83fa0b326c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Tue, 26 Mar 2024 12:14:49 +0100 Subject: [PATCH 1/2] Fixed distribution link forcing https redirection --- .github/init_solr.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/init_solr.sh b/.github/init_solr.sh index 62ed92da..7979233e 100755 --- a/.github/init_solr.sh +++ b/.github/init_solr.sh @@ -46,7 +46,7 @@ download() { case ${SOLR_VERSION} in # PS!!: Append versions and don't remove old ones (except in major versions), used in integration tests from other packages! 7.7.* | 8.[5-8].* | 8.11.* ) - url="http://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz" + url="https://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz" ;; *) echo "Version '${SOLR_VERSION}' is not supported or not valid" @@ -292,5 +292,3 @@ else solr_cloud_upload_collection_configuration solr_cloud_create_collections fi - - From 175c609f3bf04288d7fc799425e70a0fbe30b458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Tue, 26 Mar 2024 12:24:36 +0100 Subject: [PATCH 2/2] Fixed distribution link forcing https redirection --- .github/init_solr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/init_solr.sh b/.github/init_solr.sh index ae732613..e0c65338 100755 --- a/.github/init_solr.sh +++ b/.github/init_solr.sh @@ -46,7 +46,7 @@ download() { case ${SOLR_VERSION} in # PS!!: Append versions and don't remove old ones (except in major versions), used in integration tests from other packages! 7.7.* | 8.* ) - url="http://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz" + url="https://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz" ;; *) echo "Version '${SOLR_VERSION}' is not supported or not valid"