You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@livy.apache.org by js...@apache.org on 2019/07/09 11:17:40 UTC

[incubator-livy] branch master updated: [MINOR] Fix spark 2.4.0 tgz file dead download link in pom.xml

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

jshao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git


The following commit(s) were added to refs/heads/master by this push:
     new ee94065  [MINOR] Fix spark 2.4.0 tgz file dead download link in pom.xml
ee94065 is described below

commit ee94065a630fa932488229365de68ab5e053d3a0
Author: yihengwang <yi...@tencent.com>
AuthorDate: Tue Jul 9 19:16:53 2019 +0800

    [MINOR] Fix spark 2.4.0 tgz file dead download link in pom.xml
    
    ## What changes were proposed in this pull request?
    The download link for spark 2.4.0 tgz file in the pom.xml file is a dead link. This patch change all the spark tgz download links to the official spark release archive site, which should be more stable.
    
    ## How was this patch tested?
    Existing test.
    
    Author: yihengwang <yi...@tencent.com>
    
    Closes #178 from yiheng/fix_travis.
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 43e698d..fcc5b87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1036,7 +1036,7 @@
         <spark.version>${spark.scala-2.11.version}</spark.version>
         <netty.spark-2.11.version>4.1.17.Final</netty.spark-2.11.version>
         <spark.bin.download.url>
-          http://mirrors.advancedhosters.com/apache/spark/spark-2.3.3/spark-2.3.3-bin-hadoop2.7.tgz
+          https://archive.apache.org/dist/spark/spark-2.3.3/spark-2.3.3-bin-hadoop2.7.tgz
         </spark.bin.download.url>
         <spark.bin.name>spark-2.3.3-bin-hadoop2.7</spark.bin.name>
       </properties>
@@ -1056,7 +1056,7 @@
         <java.version>1.8</java.version>
         <py4j.version>0.10.7</py4j.version>
         <spark.bin.download.url>
-          http://mirrors.advancedhosters.com/apache/spark/spark-2.4.0/spark-2.4.0-bin-hadoop2.7.tgz
+          https://archive.apache.org/dist/spark/spark-2.4.0/spark-2.4.0-bin-hadoop2.7.tgz
         </spark.bin.download.url>
         <spark.bin.name>spark-2.4.0-bin-hadoop2.7</spark.bin.name>
       </properties>