Skip to content

Commit

Permalink
[CORE] Bugfix: LogErr format in DAGScheduler.scala
Browse files Browse the repository at this point in the history
Author: Zhang, Liye <liye.zhang@intel.com>

Closes apache#2572 from liyezhang556520/DAGLogErr and squashes the following commits:

5be2491 [Zhang, Liye] Bugfix: LogErr format in DAGScheduler.scala
  • Loading branch information
liyezhang556520 authored and rxin committed Sep 29, 2014
1 parent 1651cc1 commit 657bdff
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 657bdff

Please sign in to comment.