You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2022/03/29 13:37:01 UTC

[solr] branch branch_9x updated: SOLR-15852 Fix bug in smoketester URL path

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

janhoy pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 8d454f8  SOLR-15852 Fix bug in smoketester URL path
8d454f8 is described below

commit 8d454f894d2eda108ede681fd78504eaa99f8433
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Tue Mar 29 14:34:34 2022 +0200

    SOLR-15852 Fix bug in smoketester URL path
---
 dev-tools/scripts/smokeTestRelease.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 75a1d92..a65f0c0 100755
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -766,7 +766,7 @@ def removeTrailingZeros(version):
 def checkMaven(baseURL, tmpDir, gitRevision, version, isSigned, keysFile):
   print('    download artifacts')
   artifacts = []
-  artifactsURL = '%s/maven/org/apache/solr/' % baseURL
+  artifactsURL = '%s/solr/maven/org/apache/solr/' % baseURL
   targetDir = '%s/maven/org/apache/solr' % tmpDir
   if not os.path.exists(targetDir):
     os.makedirs(targetDir)