Skip to content

Commit ffe4b97

Browse files
committed
Remove unncessary comment
1 parent 5a6305f commit ffe4b97

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

core/src/main/scala/org/apache/spark/rpc/RpcEnv.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ private[spark] object RpcEnv {
3838
// Add more RpcEnv implementations here
3939
val rpcEnvNames = Map("akka" -> "org.apache.spark.rpc.akka.AkkaRpcEnvFactory",
4040
"netty" -> "org.apache.spark.rpc.netty.NettyRpcEnvFactory")
41-
// Use "netty" by default so that Jenkins can run all tests using NettyRpcEnv.
42-
// Will change it back to "akka" before merging the new implementation.
4341
val rpcEnvName = conf.get("spark.rpc", "netty")
4442
val rpcEnvFactoryClassName = rpcEnvNames.getOrElse(rpcEnvName.toLowerCase, rpcEnvName)
4543
Utils.classForName(rpcEnvFactoryClassName).newInstance().asInstanceOf[RpcEnvFactory]

0 commit comments

Comments
 (0)