Skip to content

Commit de47fb6

Browse files
committed
Fix code style.
1 parent 6215f52 commit de47fb6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/scala/org/apache/spark/scheduler/TaskSetManager.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ private[spark] class TaskSetManager(
448448
// Found a task; do some bookkeeping and return a task description
449449
val task = tasks(index)
450450
val taskId = sched.newTaskId()
451-
451+
452452
val executorManager = sched.sc.executorAllocationManager.getOrElse(null)
453453
if (executorManager != null) {
454454
if (!executorManager.isExecutorPendingToRemove(execId)) {
@@ -484,7 +484,6 @@ private[spark] class TaskSetManager(
484484
abort(s"$msg Exception during serialization: $e")
485485
throw new TaskNotSerializableException(e)
486486
}
487-
488487
if (serializedTask.limit > TaskSetManager.TASK_SIZE_TO_WARN_KB * 1024 &&
489488
!emittedTaskSizeWarning) {
490489
emittedTaskSizeWarning = true

0 commit comments

Comments
 (0)