HBASE-17572 HMaster: Caught throwable while processing event C_M_MERGE_REGION
This commit is contained in:
parent
52c51fc271
commit
e4ee7ee891
|
@ -2048,7 +2048,11 @@ public final class ProtobufUtil {
|
|||
user.getUGI().doAs(new PrivilegedExceptionAction<Void>() {
|
||||
@Override
|
||||
public Void run() throws Exception {
|
||||
admin.mergeRegions(controller, request);
|
||||
try {
|
||||
admin.mergeRegions(controller, request);
|
||||
} catch (ServiceException se) {
|
||||
throw ProtobufUtil.getRemoteException(se);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue