no jira - init throwable cause to identify error on shutdown

This commit is contained in:
gtully 2019-03-13 10:14:06 +00:00
parent d5df23b8fb
commit a000a73431
1 changed files with 1 additions and 1 deletions

View File

@ -826,7 +826,7 @@ public class RegionBroker extends EmptyBroker {
return getBrokerService().getBroker();
} catch (Exception e) {
LOG.error("Trying to get Root Broker", e);
throw new RuntimeException("The broker from the BrokerService should not throw an exception");
throw new RuntimeException("The broker from the BrokerService should not throw an exception", e);
}
}