Unverified Commit daea87a5 authored by JinyLeeChina's avatar JinyLeeChina Committed by GitHub
Browse files

'ExecutionStatus' (#2635)

parent 68e3487e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ public enum ExecutionStatus {
  * @return status
  */
   public boolean typeIsFailure(){
     return this == FAILURE || this == NEED_FAULT_TOLERANCE;
     return this == FAILURE || this == NEED_FAULT_TOLERANCE || this == KILL;
   }

 /**