Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/3073#discussion_r19971126
  
    --- Diff: 
core/src/main/scala/org/apache/spark/shuffle/FetchFailedException.scala ---
    @@ -32,10 +32,30 @@ private[spark] class FetchFailedException(
         shuffleId: Int,
         mapId: Int,
         reduceId: Int,
    -    message: String)
    -  extends Exception(message) {
    +    message: String,
    +    cause: Throwable)
    --- End diff --
    
    Actually you don't even need to add a field to the class since you never 
use `cause`. Then you can rewrite the second constructor to look like:
    ```
    def this(
      bmAddress: BlockManagerId,
        shuffleId: Int,
        mapId: Int,
        reduceId: Int,
        cause: Throwable) {
      this(bmAddress, shuffleId, mapId, reduceId, cause.getMessage)
    }
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to