You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by az...@apache.org on 2008/10/06 12:47:00 UTC

svn commit: r702087 - /synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java

Author: azeez
Date: Mon Oct  6 03:46:59 2008
New Revision: 702087

URL: http://svn.apache.org/viewvc?rev=702087&view=rev
Log:
Do not call the methods which will automatically replicate the state when you are explicitly handling the replication

Modified:
    synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java

Modified: synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java
URL: http://svn.apache.org/viewvc/synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java?rev=702087&r1=702086&r2=702087&view=diff
==============================================================================
--- synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java (original)
+++ synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/util/Replicator.java Mon Oct  6 03:46:59 2008
@@ -48,7 +48,7 @@
                     log.debug("Start replicating the property removal with key : " + key);
                 }
 
-                configCtx.removeProperty(key);
+                configCtx.removePropertyNonReplicable(key);
                 org.apache.axis2.clustering.context.Replicator.replicate(
                         configCtx, new String[]{key});
 
@@ -80,7 +80,7 @@
                             " value : " + value);
                 }
 
-                configCtx.setProperty(key, value);
+                configCtx.setNonReplicableProperty(key, value);
                 org.apache.axis2.clustering.context.Replicator.replicate(
                         configCtx, new String[]{key});