Skip to content

Commit cc353c8

Browse files
committed
scalastyle
1 parent e61f7f8 commit cc353c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,8 @@ class DAGScheduler(
10651065
try { // cancelTasks will fail if a SchedulerBackend does not implement killTask
10661066
taskScheduler.cancelTasks(stageId, shouldInterruptThread)
10671067
} catch {
1068-
case e: UnsupportedOperationException => logInfo(s"Could not cancel tasks for stage $stageId", e)
1068+
case e: UnsupportedOperationException =>
1069+
logInfo(s"Could not cancel tasks for stage $stageId", e)
10691070
} finally {
10701071
val stageInfo = stageToInfos(stage)
10711072
stageInfo.stageFailed(failureReason)

0 commit comments

Comments
 (0)