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:35:18 UTC

[solr] branch branch_9_0 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_9_0
in repository https://gitbox.apache.org/repos/asf/solr.git


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

commit c72a3f65663533cfafd44f3e19fd86cfe4a7b2ee
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)