[infinispan-commits] Infinispan SVN: r2266 - branches/4.1.x/client/hotrod-client/src/main/java/org/infinispan/client/hotrod.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Mon Aug 23 06:02:07 EDT 2010


Author: mircea.markus
Date: 2010-08-23 06:02:07 -0400 (Mon, 23 Aug 2010)
New Revision: 2266

Modified:
   branches/4.1.x/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/RemoteCacheManager.java
Log:
fixed delegation issue

Modified: branches/4.1.x/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/RemoteCacheManager.java
===================================================================
--- branches/4.1.x/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/RemoteCacheManager.java	2010-08-23 07:28:12 UTC (rev 2265)
+++ branches/4.1.x/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/RemoteCacheManager.java	2010-08-23 10:02:07 UTC (rev 2266)
@@ -143,7 +143,7 @@
     * @param start      weather or not to start the manager on return from the constructor.
     */
    public RemoteCacheManager(Marshaller marshaller, Properties props, boolean start) {
-      this(props);
+      this(props, start);
       setMarshaller(marshaller);
       if (log.isTraceEnabled())
          log.trace("Using explicitly set marshaller type: " + marshaller.getClass().getName());



More information about the infinispan-commits mailing list