Index: src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java (revision 1204937) +++ src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java (working copy) @@ -103,7 +103,7 @@ public enum EventType { // Messages originating from RS (NOTE: there is NO direct communication from // RS to Master). These are a result of RS updates into ZK. - RS_ZK_REGION_CLOSING (1), // RS is in process of closing a region + //RS_ZK_REGION_CLOSING (1), // Master adds this region as closing in ZK RS_ZK_REGION_CLOSED (2), // RS has finished closing a region RS_ZK_REGION_OPENING (3), // RS is in process of opening a region RS_ZK_REGION_OPENED (4), // RS has finished opening a region @@ -132,6 +132,7 @@ // Updates from master to ZK. This is done by the master and there is // nothing to process by either Master or RS M_ZK_REGION_OFFLINE (50), // Master adds this region as offline in ZK + M_ZK_REGION_CLOSING (51), // Master adds this region as closing in ZK // Master controlled events to be executed on the master M_SERVER_SHUTDOWN (70), // Master is processing shutdown of a RS Index: src/main/java/org/apache/hadoop/hbase/executor/RegionTransitionData.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/executor/RegionTransitionData.java (revision 1204937) +++ src/main/java/org/apache/hadoop/hbase/executor/RegionTransitionData.java (working copy) @@ -83,7 +83,7 @@ * *

Used when the server name is known (a regionserver is setting it). * - *

Valid types for this constructor are {@link EventType#RS_ZK_REGION_CLOSING}, + *

Valid types for this constructor are {@link EventType#M_ZK_REGION_CLOSING}, * {@link EventType#RS_ZK_REGION_CLOSED}, {@link EventType#RS_ZK_REGION_OPENING}, * {@link EventType#RS_ZK_REGION_SPLITTING}, * and {@link EventType#RS_ZK_REGION_OPENED}. @@ -127,7 +127,7 @@ *

One of: *