Skip to content

Commit

Permalink
Bugfix: LogErr format in DAGScheduler.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
liyezhang556520 committed Sep 29, 2014
1 parent 1651cc1 commit 5be2491
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ class DAGScheduler(
.format(job.jobId, stageId))
} else if (jobsForStage.get.size == 1) {
if (!stageIdToStage.contains(stageId)) {
logError("Missing Stage for stage with id $stageId")
logError(s"Missing Stage for stage with id $stageId")
} else {
// This is the only job that uses this stage, so fail the stage if it is running.
val stage = stageIdToStage(stageId)
Expand Down

0 comments on commit 5be2491

Please sign in to comment.