You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Sean Owen (JIRA)" <ji...@apache.org> on 2014/06/21 23:00:25 UTC

[jira] [Commented] (SPARK-1046) Enable to build behind a proxy.

    [ https://issues.apache.org/jira/browse/SPARK-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039950#comment-14039950 ] 

Sean Owen commented on SPARK-1046:
----------------------------------

Is this stale / resolved? I don't see this in the code at this point.

> 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.2#6252)