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>() {
|
user.getUGI().doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
@Override
|
@Override
|
||||||
public Void run() throws Exception {
|
public Void run() throws Exception {
|
||||||
admin.mergeRegions(controller, request);
|
try {
|
||||||
|
admin.mergeRegions(controller, request);
|
||||||
|
} catch (ServiceException se) {
|
||||||
|
throw ProtobufUtil.getRemoteException(se);
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue