You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/01/03 20:24:59 UTC

[08/21] git commit: fix path

fix path

Signed-off-by: shane-huang <sh...@intel.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/14098037
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/14098037
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/14098037

Branch: refs/heads/master
Commit: 14098037630196d2672431539503f27be67be480
Parents: 1d53792
Author: shane-huang <sh...@intel.com>
Authored: Thu Sep 26 12:50:10 2013 +0800
Committer: shane-huang <sh...@intel.com>
Committed: Thu Sep 26 12:50:10 2013 +0800

----------------------------------------------------------------------
 .../main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/14098037/core/src/main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala b/core/src/main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala
index e3dc30e..d48545e 100644
--- a/core/src/main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/worker/ExecutorRunner.scala
@@ -120,7 +120,7 @@ private[spark] class ExecutorRunner(
     // Figure out our classpath with the external compute-classpath script
     val ext = if (System.getProperty("os.name").startsWith("Windows")) ".cmd" else ".sh"
     val classPath = Utils.executeAndGetOutput(
-        Seq(sparkHome + "/bin/compute-classpath" + ext),
+        Seq(sparkHome + "/sbin/compute-classpath" + ext),
         extraEnvironment=appDesc.command.environment)
 
     Seq("-cp", classPath) ++ libraryOpts ++ workerLocalOpts ++ userOpts ++ memoryOpts