Author: rajdavies
Date: Thu Mar 13 09:21:36 2008
New Revision: 636796
URL: http://svn.apache.org/viewvc?rev=636796&view=rev
Log:
default back to straight through for network vm transport
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java?rev=636796&r1=636795&r2=636796&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java
(original)
+++
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java
Thu Mar 13 09:21:36 2008
@@ -298,7 +298,7 @@
URI uri = getVmConnectorURI();
Map<String, String> map = new HashMap<String,
String>(URISupport.parseParamters(uri));
map.put("network", "true");
- map.put("async", "true");
+ map.put("async", "false");
uri = URISupport.createURIWithQuery(uri,
URISupport.createQueryString(map));
connector.setLocalUri(uri);