This is an automated email from the ASF dual-hosted git repository.
gtully pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/master by this push:
new a000a73 no jira - init throwable cause to identify error on shutdown
a000a73 is described below
commit a000a73431f6dfd249d057e7ee7ecced44b62af9
Author: gtully <[email protected]>
AuthorDate: Wed Mar 13 10:14:06 2019 +0000
no jira - init throwable cause to identify error on shutdown
---
.../src/main/java/org/apache/activemq/broker/region/RegionBroker.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/activemq-broker/src/main/java/org/apache/activemq/broker/region/RegionBroker.java
b/activemq-broker/src/main/java/org/apache/activemq/broker/region/RegionBroker.java
index aa0909d..caf31f3 100644
---
a/activemq-broker/src/main/java/org/apache/activemq/broker/region/RegionBroker.java
+++
b/activemq-broker/src/main/java/org/apache/activemq/broker/region/RegionBroker.java
@@ -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);
}
}