Skip to content

Commit

Permalink
Fix 100 char format fail
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewor14 committed Mar 1, 2014
1 parent 2fee310 commit cceff2b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,8 @@ class DAGScheduler(
stageIdToActiveJob(jobId) = job
activeJobs += job
resultStageToJob(finalStage) = job
listenerBus.post(SparkListenerJobStart(job.jobId, jobIdToStageIds(jobId).toArray, properties))
listenerBus.post(
SparkListenerJobStart(job.jobId, jobIdToStageIds(jobId).toArray, properties))
submitStage(finalStage)
}

Expand Down

0 comments on commit cceff2b

Please sign in to comment.