Repository: spark Updated Branches: refs/heads/branch-1.0 92269f97c -> 775020f00
Args for worker rather than master Args for worker rather than master Author: Chen Chao <[email protected]> Closes #587 from CrazyJvm/patch-6 and squashes the following commits: b54b89f [Chen Chao] Args for worker rather than master (cherry picked from commit b3d2ab6b35b31b79ded2a1361f0d4eb17ab78b08) Signed-off-by: Reynold Xin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/775020f0 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/775020f0 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/775020f0 Branch: refs/heads/branch-1.0 Commit: 775020f004d5a53bbc2b7b72a6e1d8859f017940 Parents: 92269f9 Author: Chen Chao <[email protected]> Authored: Tue Apr 29 22:05:40 2014 -0700 Committer: Reynold Xin <[email protected]> Committed: Tue Apr 29 22:05:53 2014 -0700 ---------------------------------------------------------------------- .../scala/org/apache/spark/deploy/worker/WorkerArguments.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/775020f0/core/src/main/scala/org/apache/spark/deploy/worker/WorkerArguments.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/org/apache/spark/deploy/worker/WorkerArguments.scala b/core/src/main/scala/org/apache/spark/deploy/worker/WorkerArguments.scala index 3836bf2..dc51581 100644 --- a/core/src/main/scala/org/apache/spark/deploy/worker/WorkerArguments.scala +++ b/core/src/main/scala/org/apache/spark/deploy/worker/WorkerArguments.scala @@ -22,7 +22,7 @@ import java.lang.management.ManagementFactory import org.apache.spark.util.{IntParam, MemoryParam, Utils} /** - * Command-line parser for the master. + * Command-line parser for the worker. */ private[spark] class WorkerArguments(args: Array[String]) { var host = Utils.localHostName()
