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:33:29 UTC

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


The following commit(s) were added to refs/heads/main by this push:
     new 44d603614b4 ReleaseWizard: Path to solr on dlcdn missing one /solr element (#855)
44d603614b4 is described below

commit 44d603614b4bbb7995b06d07be6cc1963b31c21a
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)
---
 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: