* @param region
* @throws IOException
*/
public static void openRegion(final AdminService.BlockingInterface admin,
ServerName server, final HRegionInfo region) throws IOException {
OpenRegionRequest request =
RequestConverter.buildOpenRegionRequest(server, region, -1, null);
try {
admin.openRegion(null, request);
} catch (ServiceException se) {
throw ProtobufUtil.getRemoteException(se);