Skip to content

Commit e197e20

Browse files
committed
Fix test failed
1 parent fb5df97 commit e197e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/HeartbeatReceiver.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private[spark] class HeartbeatReceiver(sc: SparkContext, scheduler: TaskSchedule
8484
for ((executorId, lastSeenMs) <- executorLastSeen) {
8585
if (lastSeenMs < minSeenTime) {
8686
logWarning("Removing Executor " + executorId + " with no recent heartbeats: "
87-
+(now - lastSeenMs) + "ms exceeds " + slaveTimeout + "ms")
87+
+ (now - lastSeenMs) + "ms exceeds " + slaveTimeout + "ms")
8888
scheduler.executorLost(executorId, SlaveLost)
8989
sc.killExecutor(executorId)
9090
executorLastSeen.remove(executorId)

0 commit comments

Comments
 (0)