aboutsummaryrefslogtreecommitdiff
path: root/yarn
diff options
context:
space:
mode:
authorpeng.zhang <peng.zhang@xiaomi.com>2016-06-24 08:28:32 +0100
committerSean Owen <sowen@cloudera.com>2016-06-24 08:28:32 +0100
commitf4fd7432fb9cf7b197ccada1378c4f2a6d427522 (patch)
treed63d5af02e5d87ecde98e891b278c467279d8ba6 /yarn
parent2d2f607bfae97f2681df24f48bb8b1b483c6b309 (diff)
downloadspark-f4fd7432fb9cf7b197ccada1378c4f2a6d427522.tar.gz
spark-f4fd7432fb9cf7b197ccada1378c4f2a6d427522.tar.bz2
spark-f4fd7432fb9cf7b197ccada1378c4f2a6d427522.zip
[SPARK-16125][YARN] Fix not test yarn cluster mode correctly in YarnClusterSuite
## What changes were proposed in this pull request? Since SPARK-13220(Deprecate "yarn-client" and "yarn-cluster"), YarnClusterSuite doesn't test "yarn cluster" mode correctly. This pull request fixes it. ## How was this patch tested? Unit test (If this patch involves UI changes, please attach a screenshot; otherwise, remove this) Author: peng.zhang <peng.zhang@xiaomi.com> Closes #13836 from renozhang/SPARK-16125-test-yarn-cluster-mode.
Diffstat (limited to 'yarn')
-rw-r--r--yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala b/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
index 4ce33e0e85..6b20dea590 100644
--- a/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
+++ b/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
@@ -312,7 +312,7 @@ private object YarnClusterDriver extends Logging with Matchers {
// If we are running in yarn-cluster mode, verify that driver logs links and present and are
// in the expected format.
- if (conf.get("spark.master") == "yarn-cluster") {
+ if (conf.get("spark.submit.deployMode") == "cluster") {
assert(listener.driverLogs.nonEmpty)
val driverLogs = listener.driverLogs.get
assert(driverLogs.size === 2)