Skip to content

Commit

Permalink
Fixing compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
mccheah committed Jan 27, 2015
1 parent 9fe6495 commit d63f63f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/org/apache/spark/SparkHadoopWriter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ class SparkHadoopWriter(@transient jobConf: JobConf)
throw new CommitDeniedException(msg, jobID, splitID, attemptID)
}
} else {
val msg: String = s"No need to commit output of task"
+ " because needsTaskCommit=false: ${taID.value}"
val msg: String = s"No need to commit output of task" +
" because needsTaskCommit=false: ${taID.value}"
logInfo(msg)
throw new CommitDeniedException(msg, jobID, splitID, attemptID)
}
Expand Down

0 comments on commit d63f63f

Please sign in to comment.