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 9e4ad96 commit 24a4c32Copy full SHA for 24a4c32
repl/src/main/scala/org/apache/spark/repl/SparkIMain.scala
@@ -102,7 +102,7 @@ import org.apache.spark.util.Utils
102
103
val virtualDirectory = new PlainFile(outputDir) // "directory" for classfiles
104
/** Jetty server that will serve our classes to worker nodes */
105
- val classServerListenPort: Int = conf.getInt("spark.replClassServer.port", 0)
+ val classServerListenPort = conf.getInt("spark.replClassServer.port", 0)
106
val classServer = new HttpServer(outputDir, new SecurityManager(conf), classServerListenPort)
107
private var currentSettings: Settings = initialSettings
108
var printResults = true // whether to print result lines
0 commit comments