We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c45f78 commit 32102f5Copy full SHA for 32102f5
core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala
@@ -700,7 +700,8 @@ class DAGScheduler(
700
701
private[scheduler] def cleanUpAfterSchedulerStop() {
702
for (job <- activeJobs) {
703
- val error = new SparkException(s"Job ${job.jobId} cancelled because SparkContext was shut down")
+ val error =
704
+ new SparkException(s"Job ${job.jobId} cancelled because SparkContext was shut down")
705
job.listener.jobFailed(error)
706
// Tell the listeners that all of the running stages have ended. Don't bother
707
// cancelling the stages because if the DAG scheduler is stopped, the entire application
0 commit comments