You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/RMAppAttemptImpl.java
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -437,9 +437,11 @@ RMAppAttemptEventType.STATUS_UPDATE, new StatusUpdateTransition())
437
437
RMAppAttemptState.FAILED,
438
438
EnumSet.of(
439
439
RMAppAttemptEventType.LAUNCHED,
440
+
RMAppAttemptEventType.LAUNCH_FAILED,
440
441
RMAppAttemptEventType.EXPIRE,
441
442
RMAppAttemptEventType.KILL,
442
443
RMAppAttemptEventType.FAIL,
444
+
RMAppAttemptEventType.REGISTERED,
443
445
RMAppAttemptEventType.UNREGISTERED,
444
446
RMAppAttemptEventType.STATUS_UPDATE,
445
447
RMAppAttemptEventType.CONTAINER_ALLOCATED))
@@ -1203,10 +1205,16 @@ public RMAppAttemptState transition(RMAppAttemptImpl appAttempt,
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/TestRMAppAttemptTransitions.java
+79-1Lines changed: 79 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -986,7 +986,7 @@ public void testLaunchedAtFinalSaving() {
0 commit comments