YARN-10332. RESOURCE_UPDATE event was repeatedly registered in DECOMMISSIONING state. Contributed by yehuanhuan
(cherry picked from commit 34fe74da0e
)
This commit is contained in:
parent
5236c96ead
commit
5710005a19
|
@ -315,9 +315,6 @@ public class RMNodeImpl implements RMNode, EventHandler<RMNodeEvent> {
|
||||||
.addTransition(NodeState.DECOMMISSIONING, EnumSet.of(
|
.addTransition(NodeState.DECOMMISSIONING, EnumSet.of(
|
||||||
NodeState.DECOMMISSIONING, NodeState.DECOMMISSIONED),
|
NodeState.DECOMMISSIONING, NodeState.DECOMMISSIONED),
|
||||||
RMNodeEventType.RECONNECTED, new ReconnectNodeTransition())
|
RMNodeEventType.RECONNECTED, new ReconnectNodeTransition())
|
||||||
.addTransition(NodeState.DECOMMISSIONING, NodeState.DECOMMISSIONING,
|
|
||||||
RMNodeEventType.RESOURCE_UPDATE,
|
|
||||||
new UpdateNodeResourceWhenRunningTransition())
|
|
||||||
|
|
||||||
//Transitions from LOST state
|
//Transitions from LOST state
|
||||||
.addTransition(NodeState.LOST, NodeState.LOST,
|
.addTransition(NodeState.LOST, NodeState.LOST,
|
||||||
|
|
Loading…
Reference in New Issue