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 {
221
221
222
222
// Initialize the Spark UI, registering all associated listeners
223
223
private [spark] val ui = new SparkUI (this )
224
- ui.bind()
225
224
226
225
/** A default Hadoop Configuration for the Hadoop code (e.g. file systems) that we reuse. */
227
226
val hadoopConfiguration : Configuration = {
@@ -334,6 +333,9 @@ class SparkContext(config: SparkConf) extends Logging {
334
333
postEnvironmentUpdate()
335
334
postApplicationStart()
336
335
336
+ // Starting Spark UI service
337
+ ui.bind()
338
+
337
339
private [spark] var checkpointDir : Option [String ] = None
338
340
339
341
// 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