aboutsummaryrefslogtreecommitdiff
path: root/yarn/alpha
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@apache.org>2014-09-10 12:02:23 -0700
committerJosh Rosen <joshrosen@apache.org>2014-09-10 12:02:23 -0700
commit26503fdf20f4181a2b390c88b83f364e6a4ccc21 (patch)
tree34c5cdc45bd178e6c8fc075db0472e1a4593fc17 /yarn/alpha
parentf0c87dc86ae65a39cd19370d8d960b4a60854517 (diff)
downloadspark-26503fdf20f4181a2b390c88b83f364e6a4ccc21.tar.gz
spark-26503fdf20f4181a2b390c88b83f364e6a4ccc21.tar.bz2
spark-26503fdf20f4181a2b390c88b83f364e6a4ccc21.zip
[HOTFIX] Fix scala style issue introduced by #2276.
Diffstat (limited to 'yarn/alpha')
-rw-r--r--yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/YarnRMClientImpl.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/YarnRMClientImpl.scala b/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/YarnRMClientImpl.scala
index fc30953011..acf26505e4 100644
--- a/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/YarnRMClientImpl.scala
+++ b/yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/YarnRMClientImpl.scala
@@ -98,7 +98,7 @@ private class YarnRMClientImpl(args: ApplicationMasterArguments) extends YarnRMC
// Users can then monitor stderr/stdout on that node if required.
appMasterRequest.setHost(Utils.localHostName())
appMasterRequest.setRpcPort(0)
- //remove the scheme from the url if it exists since Hadoop does not expect scheme
+ // remove the scheme from the url if it exists since Hadoop does not expect scheme
appMasterRequest.setTrackingUrl(new URI(uiAddress).getAuthority())
resourceManager.registerApplicationMaster(appMasterRequest)
}