xuyiyun0929 commented on a change in pull request #678: [SCB-506]服务治理相关的需要事件上报
URL: 
https://github.com/apache/incubator-servicecomb-java-chassis/pull/678#discussion_r189147962
 
 

 ##########
 File path: 
handlers/handler-loadbalance/src/test/java/org/apache/servicecomb/loadbalance/filter/TestIsolationServerListFilter.java
 ##########
 @@ -60,29 +63,26 @@ public static void classTeardown() {
     Deencapsulation.setField(ConfigurationManager.class, "instance", null);
     Deencapsulation.setField(ConfigurationManager.class, 
"customConfigurationInstalled", false);
     Deencapsulation.setField(DynamicPropertyFactory.class, "config", null);
+    ArchaiusUtils.resetConfig();
   }
 
   @Before
   public void setUp() throws Exception {
     IsolationServerListFilter = new IsolationServerListFilter();
     loadBalancerStats = new LoadBalancerStats("loadBalancer");
-
-    AbstractConfiguration configuration =
-        (AbstractConfiguration) 
DynamicPropertyFactory.getBackingConfigurationSource();
-    configuration.clearProperty("cse.loadbalance.isolation.enabled");
-    configuration.addProperty("cse.loadbalance.isolation.enabled",
+    ArchaiusUtils.setProperty("cse.loadbalance.isolation.enabled",
         "true");
-    
configuration.clearProperty("cse.loadbalance.isolation.enableRequestThreshold");
-    
configuration.addProperty("cse.loadbalance.isolation.enableRequestThreshold",
+    
ArchaiusUtils.setProperty("cse.loadbalance.isolation.enableRequestThreshold",
         "3");
 
     taskList = new ArrayList<>();
-    EventManager.register(new Object() {
+    receiveEvent = new Object() {
       @Subscribe
       public void onEvent(AlarmEvent isolationServerEvent) {
         taskList.add(isolationServerEvent);
       }
-    });
+    };
+    EventManager.register(receiveEvent);
 
 Review comment:
    done,save a reference in filter when UT create a new instance for it.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to