[ 
https://issues.apache.org/jira/browse/SPARK-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sean Owen resolved SPARK-1046.
------------------------------
    Resolution: Fixed

> Enable to build behind a proxy.
> -------------------------------
>
>                 Key: SPARK-1046
>                 URL: https://issues.apache.org/jira/browse/SPARK-1046
>             Project: Spark
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: 0.8.1
>            Reporter: Kousuke Saruta
>            Priority: Minor
>
> I tried to build spark-0.8.1 behind proxy and failed although I set 
> http/https.proxyHost, proxyPort, proxyUser, proxyPassword.
> I found it's caused by accessing  github using git protocol (git://).
> The URL is hard-corded in SparkPluginBuild.scala as follows.
> {code}
> lazy val junitXmlListener = 
> uri("git://github.com/ijuma/junit_xml_listener.git#fe434773255b451a38e8d889536ebc260f4225ce")
> {code}
> After I rewrite the URL as follows, I could build successfully.
> {code}
> lazy val junitXmlListener = 
> uri("https://github.com/ijuma/junit_xml_listener.git#fe434773255b451a38e8d889536ebc260f4225ce";)
> {code}
> I think we should be able to build whether we are behind a proxy or not.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to