Skip to content

Commit

Permalink
Exception -> Throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jul 23, 2015
1 parent 692b3a4 commit 17edbcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ class DAGScheduler(
case scala.util.Success(_) =>
logInfo("Job %d finished: %s, took %f s".format
(waiter.jobId, callSite.shortForm, (System.nanoTime - start) / 1e9))
case scala.util.Failure(exception: Exception) =>
case scala.util.Failure(exception: Throwable) =>
logInfo("Job %d failed: %s, took %f s".format
(waiter.jobId, callSite.shortForm, (System.nanoTime - start) / 1e9))
// SPARK-8644: Include user stack trace in exceptions coming from DAGScheduler.
Expand Down

0 comments on commit 17edbcd

Please sign in to comment.