HBASE-18557: Change splitable to mergeable in MergeTableRegionsProcedure

Signed-off-by: Jerry He <jerryjch@apache.org>
This commit is contained in:
Yi Liang 2017-08-10 11:15:59 -07:00 committed by Jerry He
parent aa8f67a148
commit 95e883967c
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ public class MergeTableRegionsProcedure
throws IOException {
GetRegionInfoResponse response =
Util.getRegionInfoResponse(env, rs.getServerName(), rs.getRegion());
return response.hasSplittable() && response.getSplittable();
return response.hasMergeable() && response.getMergeable();
}
/**