aboutsummaryrefslogtreecommitdiff
path: root/yarn/common
diff options
context:
space:
mode:
authorColin Patrick McCabe <cmccabe@cloudera.com>2014-06-08 12:27:34 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-08 12:27:34 -0700
commitee96e9406613e621837360b15c34ea7c7220a7a3 (patch)
tree8039107e31b87a80fabc7efddc6a0c0bb21735a8 /yarn/common
parenta338834f90556d78119b37985b603ecee85f97ed (diff)
downloadspark-ee96e9406613e621837360b15c34ea7c7220a7a3.tar.gz
spark-ee96e9406613e621837360b15c34ea7c7220a7a3.tar.bz2
spark-ee96e9406613e621837360b15c34ea7c7220a7a3.zip
SPARK-1898: In deploy.yarn.Client, use YarnClient not YarnClientImpl
https://issues.apache.org/jira/browse/SPARK-1898 Author: Colin Patrick McCabe <cmccabe@cloudera.com> Closes #850 from cmccabe/master and squashes the following commits: d66eddc [Colin Patrick McCabe] SPARK-1898: In deploy.yarn.Client, use YarnClient rather than YarnClientImpl
Diffstat (limited to 'yarn/common')
-rw-r--r--yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala b/yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala
index e01ed5a57d..039cf4f276 100644
--- a/yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala
+++ b/yarn/common/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala
@@ -112,7 +112,7 @@ private[spark] class YarnClientSchedulerBackend(
override def stop() {
super.stop()
- client.stop()
+ client.stop
logInfo("Stopped")
}