Leemoonsoo commented on a change in pull request #3451: [ZEPPELIN-4226] Fix "View in Spark web UI" in kubernetes mode URL: https://github.com/apache/zeppelin/pull/3451#discussion_r326717953
########## File path: spark/spark-scala-parent/src/main/scala/org/apache/zeppelin/spark/BaseSparkScalaInterpreter.scala ########## @@ -303,7 +303,11 @@ abstract class BaseSparkScalaInterpreter(val conf: SparkConf, protected def createZeppelinContext(): Unit = { val sparkShims = SparkShims.getInstance(sc.version, properties) - sparkShims.setupSparkListener(sc.master, sparkUrl, InterpreterContext.get) + var webUiUrl = properties.getProperty("zeppelin.spark.uiWebUrl"); + if (webUiUrl == null || webUiUrl.trim().length() == 0) { Review comment: Updated! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services