Repository: spark Updated Branches: refs/heads/branch-1.0 d339b332c -> 35ca6c510
fix the spelling mistake Author: wangfei <[email protected]> Closes #614 from scwf/pxcw and squashes the following commits: d1016ba [wangfei] fix spelling mistake (cherry picked from commit 55c760ff9bc8079e3df3b63a6ba4e6778a33da47) Signed-off-by: Patrick Wendell <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/35ca6c51 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/35ca6c51 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/35ca6c51 Branch: refs/heads/branch-1.0 Commit: 35ca6c5104acdd0e937bef55a9dd12f791a54134 Parents: d339b33 Author: wangfei <[email protected]> Authored: Thu May 1 21:37:22 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Thu May 1 21:37:36 2014 -0700 ---------------------------------------------------------------------- core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/35ca6c51/core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala b/core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala index dd0a136..195da81 100755 --- a/core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala +++ b/core/src/main/scala/org/apache/spark/deploy/worker/Worker.scala @@ -244,7 +244,7 @@ private[spark] class Worker( } } catch { case e: Exception => { - logError("Failed to launch exector %s/%d for %s".format(appId, execId, appDesc.name)) + logError("Failed to launch executor %s/%d for %s".format(appId, execId, appDesc.name)) if (executors.contains(appId + "/" + execId)) { executors(appId + "/" + execId).kill() executors -= appId + "/" + execId
