Kaynağa Gözat

Fix the cluster rule checking logic in FlowRuleUtil#checkClusterField() (#1105)

master
wangyb Eric Zhao 5 yıl önce
ebeveyn
işleme
dbf1f97dde
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/block/flow/FlowRuleUtil.java

+ 1
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/block/flow/FlowRuleUtil.java Dosyayı Görüntüle

@@ -195,7 +195,7 @@ public final class FlowRuleUtil {
if (!isWindowConfigValid(clusterConfig.getSampleCount(), clusterConfig.getWindowIntervalMs())) { if (!isWindowConfigValid(clusterConfig.getSampleCount(), clusterConfig.getWindowIntervalMs())) {
return false; return false;
} }
switch (rule.getStrategy()) {
switch (clusterConfig.getStrategy()) {
case ClusterRuleConstant.FLOW_CLUSTER_STRATEGY_NORMAL: case ClusterRuleConstant.FLOW_CLUSTER_STRATEGY_NORMAL:
return true; return true;
default: default:


Yükleniyor…
İptal
Kaydet