You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by la...@apache.org on 2015/06/03 14:19:46 UTC

stratos git commit: Fix nw partition filter

Repository: stratos
Updated Branches:
  refs/heads/master db38d6ff1 -> f067b9897


Fix nw partition filter


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/f067b989
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/f067b989
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/f067b989

Branch: refs/heads/master
Commit: f067b9897c02b8b802f8afcf5b968590e64fcfd7
Parents: db38d6f
Author: Lahiru Sandaruwan <la...@apache.org>
Authored: Wed Jun 3 17:49:37 2015 +0530
Committer: Lahiru Sandaruwan <la...@apache.org>
Committed: Wed Jun 3 17:49:37 2015 +0530

----------------------------------------------------------------------
 .../balancer/conf/configurator/TopologyFilterConfigurator.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/f067b989/components/org.apache.stratos.load.balancer/src/main/java/org/apache/stratos/load/balancer/conf/configurator/TopologyFilterConfigurator.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.load.balancer/src/main/java/org/apache/stratos/load/balancer/conf/configurator/TopologyFilterConfigurator.java b/components/org.apache.stratos.load.balancer/src/main/java/org/apache/stratos/load/balancer/conf/configurator/TopologyFilterConfigurator.java
index 381988c..25d9900 100644
--- a/components/org.apache.stratos.load.balancer/src/main/java/org/apache/stratos/load/balancer/conf/configurator/TopologyFilterConfigurator.java
+++ b/components/org.apache.stratos.load.balancer/src/main/java/org/apache/stratos/load/balancer/conf/configurator/TopologyFilterConfigurator.java
@@ -49,7 +49,7 @@ public class TopologyFilterConfigurator {
 
         String networkPartitionFilter = configuration.getTopologyMemberFilter();
         if (StringUtils.isNotBlank(networkPartitionFilter)) {
-            System.setProperty(StratosConstants.TOPOLOGY_NETWORK_PARTITION_FILTER, memberFilter);
+            System.setProperty(StratosConstants.TOPOLOGY_NETWORK_PARTITION_FILTER, networkPartitionFilter);
         }
 
         if (log.isDebugEnabled()) {