소스 검색

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

master
wangyb Eric Zhao 5 년 전
부모
커밋
dbf1f97dde
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 파일 보기

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


Loading…
취소
저장