Skip to content
Merged
2 changes: 1 addition & 1 deletion hadoop-hdds/interface-client/src/main/proto/hdds.proto
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ enum NodeState {
HEALTHY = 1;
STALE = 2;
DEAD = 3;
HEALTHY_READONLY = 6;
HEALTHY_READONLY = 6; // (deprecated)
}

enum NodeOperationalState {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,17 +191,7 @@ public final class SCMEvents {
* state to healthy state.
*/
public static final TypedEvent<DatanodeDetails>
HEALTHY_READONLY_TO_HEALTHY_NODE =
new TypedEvent<>(DatanodeDetails.class,
"HEALTHY_READONLY_TO_HEALTHY_NODE");

/**
* This event will be triggered whenever a datanode is moved to a
* healthy-readonly state.
*/
public static final TypedEvent<DatanodeDetails>
HEALTHY_READONLY_NODE =
new TypedEvent<>(DatanodeDetails.class, "HEALTHY_READONLY_NODE");
UNHEALTHY_TO_HEALTHY_NODE = new TypedEvent<>(DatanodeDetails.class, "UNHEALTHY_TO_HEALTHY_NODE");

/**
* This event will be triggered by CommandStatusReportHandler whenever a
Expand Down

This file was deleted.

Loading