vanzin commented on a change in pull request #26331: [SPARK-24203][core] Make
executor's bindAddress configurable
URL: https://github.com/apache/spark/pull/26331#discussion_r342822400
##########
File path: core/src/main/scala/org/apache/spark/SparkEnv.scala
##########
@@ -213,6 +214,17 @@ object SparkEnv extends Logging {
env
}
+ private[spark] def createExecutorEnv(
+ conf: SparkConf,
+ executorId: String,
+ hostname: String,
+ numCores: Int,
+ ioEncryptionKey: Option[Array[Byte]],
+ isLocal: Boolean): SparkEnv = {
+ createExecutorEnv(conf, executorId, hostname,
+ hostname, numCores, ioEncryptionKey, isLocal);
Review comment:
drop the semi-colon
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]