aboutsummaryrefslogtreecommitdiff
path: root/yarn
diff options
context:
space:
mode:
authorAndrew Or <andrewor14@gmail.com>2014-10-12 15:41:27 -0700
committerAndrew Or <andrewor14@gmail.com>2014-10-12 15:41:27 -0700
commitc86c9760374f331ab7ed173b0a022250635485d3 (patch)
tree876d9f964d3cf55ab0150baf7d8430611bc19435 /yarn
parente5be4de7bcf5aa7afc856fc665427ff2b22a0fcd (diff)
downloadspark-c86c9760374f331ab7ed173b0a022250635485d3.tar.gz
spark-c86c9760374f331ab7ed173b0a022250635485d3.tar.bz2
spark-c86c9760374f331ab7ed173b0a022250635485d3.zip
[HOTFIX] Fix compilation error for Yarn 2.0.*-alpha
This was reported in https://issues.apache.org/jira/browse/SPARK-3445. There are API differences between the 0.23.* and the 2.0.*-alpha branches that are not accounted for when this code was introduced. Author: Andrew Or <andrewor14@gmail.com> Closes #2776 from andrewor14/fix-yarn-alpha and squashes the following commits: ec94752 [Andrew Or] Fix compilation error for 2.0.*-alpha
Diffstat (limited to 'yarn')
-rw-r--r--yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala b/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala
index 5a20532315..5c7bca4541 100644
--- a/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala
+++ b/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala
@@ -122,7 +122,7 @@ private[spark] class Client(
* ApplicationReport#getClientToken is renamed `getClientToAMToken` in the stable API.
*/
override def getClientToken(report: ApplicationReport): String =
- Option(report.getClientToken).getOrElse("")
+ Option(report.getClientToken).map(_.toString).getOrElse("")
}
object Client {