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

    https://github.com/apache/spark/pull/9164#discussion_r42953292
  
    --- Diff: 
core/src/main/scala/org/apache/spark/scheduler/ExecutorLossReason.scala ---
    @@ -28,12 +28,15 @@ class ExecutorLossReason(val message: String) extends 
Serializable {
     }
     
     private[spark]
    -case class ExecutorExited(exitCode: Int, isNormalExit: Boolean, reason: 
String)
    +case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: 
String)
       extends ExecutorLossReason(reason)
     
     private[spark] object ExecutorExited {
    -  def apply(exitCode: Int, isNormalExit: Boolean): ExecutorExited = {
    -    ExecutorExited(exitCode, isNormalExit, 
ExecutorExitCode.explainExitCode(exitCode))
    +  def apply(exitCode: Int, exitUnrelatedToRunningTasks: Boolean): 
ExecutorExited = {
    --- End diff --
    
    Did you forget to update this?


---
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