We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d0514 commit a599d91Copy full SHA for a599d91
core/src/main/scala/org/apache/spark/ui/UIUtils.scala
@@ -511,18 +511,6 @@ private[spark] object UIUtils extends Logging {
511
def getTimeZoneOffset() : Int =
512
TimeZone.getDefault().getOffset(System.currentTimeMillis()) / 1000 / 60
513
514
- /**
515
- * Return the correct Href after checking if master is running in the
516
- * reverse proxy mode or not.
517
- */
518
- def makeHref(proxy: Boolean, id: String, origHref: String): String = {
519
- if (proxy) {
520
- s"/proxy/$id"
521
- } else {
522
- origHref
523
- }
524
525
-
526
/**
527
* Remove suspicious characters of user input to prevent Cross-Site scripting (XSS) attacks
528
*
0 commit comments