File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
core/src/main/scala/org/apache/spark Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ class SparkContext(config: SparkConf) extends Logging {
221221
222222 // Initialize the Spark UI, registering all associated listeners
223223 private [spark] val ui = new SparkUI (this )
224- ui.bind()
225224
226225 /** A default Hadoop Configuration for the Hadoop code (e.g. file systems) that we reuse. */
227226 val hadoopConfiguration : Configuration = {
@@ -334,6 +333,9 @@ class SparkContext(config: SparkConf) extends Logging {
334333 postEnvironmentUpdate()
335334 postApplicationStart()
336335
336+ // Starting Spark UI service
337+ ui.bind()
338+
337339 private [spark] var checkpointDir : Option [String ] = None
338340
339341 // Thread Local variable that can be used by users to pass information down the stack
You can’t perform that action at this time.
0 commit comments