[jboss-cvs] JBossAS SVN: r77614 - trunk/cluster/src/main/org/jboss/ha/framework/server.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 28 13:19:59 EDT 2008


Author: bstansberry at jboss.com
Date: 2008-08-28 13:19:59 -0400 (Thu, 28 Aug 2008)
New Revision: 77614

Modified:
   trunk/cluster/src/main/org/jboss/ha/framework/server/DistributedStateImpl.java
Log:
Fix replAsync flag

Modified: trunk/cluster/src/main/org/jboss/ha/framework/server/DistributedStateImpl.java
===================================================================
--- trunk/cluster/src/main/org/jboss/ha/framework/server/DistributedStateImpl.java	2008-08-28 16:54:00 UTC (rev 77613)
+++ trunk/cluster/src/main/org/jboss/ha/framework/server/DistributedStateImpl.java	2008-08-28 17:19:59 UTC (rev 77614)
@@ -197,7 +197,7 @@
       	if (CacheMode.REPL_ASYNC == cm)
       	   this.replAsync = true;
       	else if (CacheMode.REPL_SYNC == cm)
-           this.replAsync = true;
+           this.replAsync = false;
       	else
       	   throw new IllegalStateException("Cache must be configured for replication, not " + cm);
       }




More information about the jboss-cvs-commits mailing list