Skip to content

Commit

Permalink
Print full stack trace for miscellaneous exceptions during serializat…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
darabos committed Jul 8, 2014
1 parent 52c22ba commit 3aceaad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ class DAGScheduler(
runningStages -= stage
return
case NonFatal(e) => // Other exceptions, such as IllegalArgumentException from Kryo.
abortStage(stage, "Task serialization failed: " + e.toString)
abortStage(stage, s"Task serialization failed: $e\n${e.getStackTraceString}")
runningStages -= stage
return
}
Expand Down

0 comments on commit 3aceaad

Please sign in to comment.