Skip to content

Commit 32102f5

Browse files
committed
style
1 parent 2c45f78 commit 32102f5

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
@@ -700,7 +700,8 @@ class DAGScheduler(
700700

701701
private[scheduler] def cleanUpAfterSchedulerStop() {
702702
for (job <- activeJobs) {
703-
val error = new SparkException(s"Job ${job.jobId} cancelled because SparkContext was shut down")
703+
val error =
704+
new SparkException(s"Job ${job.jobId} cancelled because SparkContext was shut down")
704705
job.listener.jobFailed(error)
705706
// Tell the listeners that all of the running stages have ended. Don't bother
706707
// cancelling the stages because if the DAG scheduler is stopped, the entire application

0 commit comments

Comments
 (0)