Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.spark.deploy.yarn

import scala.collection.{Map, Set}
import java.net.URI;
import java.net.URI

import org.apache.hadoop.net.NetUtils
import org.apache.hadoop.yarn.api._
Expand Down Expand Up @@ -109,7 +109,9 @@ private class YarnRMClientImpl(args: ApplicationMasterArguments) extends YarnRMC
appMasterRequest.setHost(Utils.localHostName())
appMasterRequest.setRpcPort(0)
// remove the scheme from the url if it exists since Hadoop does not expect scheme
appMasterRequest.setTrackingUrl(new URI(uiAddress).getAuthority())
val uri = new URI(uiAddress)
val authority = if (uri.getScheme == null) uiAddress else uri.getAuthority
appMasterRequest.setTrackingUrl(authority)
resourceManager.registerApplicationMaster(appMasterRequest)
}

Expand Down