Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion downloads.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $(document).ready(function() {

3. Download Spark: <span id="spanDownloadLink"></span>

4. Verify this release using the <span id="sparkDownloadVerify"></span> and [project release KEYS](https://www.apache.org/dist/spark/KEYS).
4. Verify this release using the <span id="sparkDownloadVerify"></span> and [project release KEYS](https://downloads.apache.org/spark/KEYS).

Note that, Spark is pre-built with Scala 2.11 except version 2.4.2, which is pre-built with Scala 2.12.

Expand Down
4 changes: 2 additions & 2 deletions js/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ function updateDownloadLink() {
var contents = "<a href=\"" + downloadHref + "\" onClick=\"" + onClick + "\">" + text + "</a>";
append(downloadLink, contents);

var sigHref = "https://www.apache.org/dist/spark/spark-" + version + "/" + artifactName + ".asc";
var checksumHref = "https://www.apache.org/dist/spark/spark-" + version + "/" + artifactName + ".sha512";
var sigHref = "https://downloads.apache.org/spark/spark-" + version + "/" + artifactName + ".asc";
var checksumHref = "https://downloads.apache.org/spark/spark-" + version + "/" + artifactName + ".sha512";
var verifyLinks = versionShort(version) + " <a href=\"" + sigHref + "\">signatures</a>, <a href=\"" +
checksumHref + "\">checksums</a>";
append(verifyLink, verifyLinks);
Expand Down
4 changes: 2 additions & 2 deletions site/js/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ function updateDownloadLink() {
var contents = "<a href=\"" + downloadHref + "\" onClick=\"" + onClick + "\">" + text + "</a>";
append(downloadLink, contents);

var sigHref = "https://www.apache.org/dist/spark/spark-" + version + "/" + artifactName + ".asc";
var checksumHref = "https://www.apache.org/dist/spark/spark-" + version + "/" + artifactName + ".sha512";
var sigHref = "https://downloads.apache.org/spark/spark-" + version + "/" + artifactName + ".asc";
var checksumHref = "https://downloads.apache.org/spark/spark-" + version + "/" + artifactName + ".sha512";
var verifyLinks = versionShort(version) + " <a href=\"" + sigHref + "\">signatures</a>, <a href=\"" +
checksumHref + "\">checksums</a>";
append(verifyLink, verifyLinks);
Expand Down
2 changes: 1 addition & 1 deletion site/release-process.html
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ <h3>Finalize the Release</h3>
(cd svn-spark &amp;&amp; svn ci --username $ASF_USERNAME --password "$ASF_PASSWORD" -m"Update KEYS")
</code></pre></div></div>

<p>Verify that the resources are present in <a href="https://www.apache.org/dist/spark/">https://www.apache.org/dist/spark/</a>.
<p>Verify that the resources are present in <a href="https://downloads.apache.org/spark/">https://downloads.apache.org/spark/</a>.
It may take a while for them to be visible. This will be mirrored throughout the Apache network.
Check the release checker result of the release at <a href="https://checker.apache.org/projs/spark.html">https://checker.apache.org/projs/spark.html</a>.</p>

Expand Down