Github user tgravescs commented on a diff in the pull request:
https://github.com/apache/spark/pull/344#discussion_r11363051
--- Diff: core/src/main/scala/org/apache/spark/ui/SparkUI.scala ---
@@ -112,7 +112,10 @@ private[spark] class SparkUI(
logInfo("Stopped Spark Web UI at %s".format(appUIAddress))
}
- private[spark] def appUIAddress = "http://" + publicHost + ":" +
boundPort
+ /**
+ * Return the application UI address. This does not include the scheme
(http://).
+ */
+ private[spark] def appUIAddress = publicHost + ":" + boundPort
--- End diff --
I'm fine with that. That is actually what I originally had back when I put
in the support for linking spark ui to yarn ui, but during the review we
decided to remove it since it was only used in one other spot.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---