mirror of https://github.com/apache/activemq.git
set async=false for network connectors
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@553094 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
241971a133
commit
4757541f96
|
@ -283,6 +283,7 @@ public class BrokerService implements Service {
|
|||
URI uri = getVmConnectorURI();
|
||||
HashMap map = new HashMap(URISupport.parseParamters(uri));
|
||||
map.put("network", "true");
|
||||
map.put("async","false");
|
||||
uri = URISupport.createURIWithQuery(uri, URISupport.createQueryString(map));
|
||||
connector.setLocalUri(uri);
|
||||
|
||||
|
@ -1605,10 +1606,15 @@ public class BrokerService implements Service {
|
|||
this.transportConnectors.clear();
|
||||
setTransportConnectors(al);
|
||||
}
|
||||
URI uri = getVmConnectorURI();
|
||||
HashMap map = new HashMap(URISupport.parseParamters(uri));
|
||||
map.put("network", "true");
|
||||
map.put("async","false");
|
||||
uri = URISupport.createURIWithQuery(uri, URISupport.createQueryString(map));
|
||||
|
||||
for (Iterator iter = getNetworkConnectors().iterator(); iter.hasNext();) {
|
||||
NetworkConnector connector = (NetworkConnector) iter.next();
|
||||
connector.setLocalUri(getVmConnectorURI());
|
||||
connector.setLocalUri(uri);
|
||||
connector.setBrokerName(getBrokerName());
|
||||
connector.setDurableDestinations(getBroker().getDurableDestinations());
|
||||
connector.start();
|
||||
|
|
Loading…
Reference in New Issue