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/05/12 09:40:40 UTC

[solr] 02/03: ReleaseWizard: Path to solr on dlcdn missing one /solr element (#855)

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

commit f906d2ff1cc728af314ad2a9686e56488a0ccaa5
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Thu May 12 11:33:24 2022 +0200

    ReleaseWizard: Path to solr on dlcdn missing one /solr element (#855)
    
    (cherry picked from commit 44d603614b4bbb7995b06d07be6cc1963b31c21a)
---
 dev-tools/scripts/releaseWizard.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/scripts/releaseWizard.py b/dev-tools/scripts/releaseWizard.py
index b9fbb7eb5ab..7361c767238 100755
--- a/dev-tools/scripts/releaseWizard.py
+++ b/dev-tools/scripts/releaseWizard.py
@@ -1993,7 +1993,7 @@ def prepare_announce_solr(todo): # pylint: disable=unused-argument
 
 def check_artifacts_available(todo): # pylint: disable=unused-argument
   try:
-    cdnUrl = expand_jinja("https://dlcdn.apache.org/solr/{{ release_version }}/solr-{{ release_version }}-src.tgz.asc")
+    cdnUrl = expand_jinja("https://dlcdn.apache.org/solr/solr/{{ release_version }}/solr-{{ release_version }}-src.tgz.asc")
     load(cdnUrl)
     print("Found %s" % cdnUrl)
   except Exception as e: