Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
ajithme committed Mar 22, 2019
commit 76570b7f1dad8cb1e5f58dd1718a21e770148e53
3 changes: 1 addition & 2 deletions core/src/main/scala/org/apache/spark/SparkConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.spark

import java.util.{Map => JMap}
import java.util.concurrent.{ConcurrentHashMap, TimeUnit}
import java.util.concurrent.ConcurrentHashMap

import scala.collection.JavaConverters._
import scala.collection.mutable.LinkedHashSet
Expand All @@ -29,7 +29,6 @@ import org.apache.avro.{Schema, SchemaNormalization}
import org.apache.spark.deploy.history.config._
import org.apache.spark.internal.Logging
import org.apache.spark.internal.config._
import org.apache.spark.network.util.JavaUtils
import org.apache.spark.serializer.KryoSerializer
import org.apache.spark.util.Utils

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,6 @@ private[spark] class Executor(

val message = Heartbeat(executorId, accumUpdates.toArray, env.blockManager.blockManagerId)
try {

val response = heartbeatReceiverRef.askSync[HeartbeatResponse](
message, new RpcTimeout(heartbeatInterval.millis.toSeconds.seconds,
EXECUTOR_HEARTBEAT_INTERVAL.key))
Expand Down