소스 검색

Set SystemRule's threshold to zero is allowed.

master
Carpenter Lee 6 년 전
부모
커밋
40514587ac
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/system/SystemRuleManager.java

+ 4
- 4
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/system/SystemRuleManager.java 파일 보기

@@ -226,24 +226,24 @@ public class SystemRuleManager {
boolean checkStatus = false;
// 首先判断是否有效

if (rule.getHighestSystemLoad() > 0) {
if (rule.getHighestSystemLoad() >= 0) {
highestSystemLoad = Math.min(highestSystemLoad, rule.getHighestSystemLoad());
highestSystemLoadIsSet = true;
checkStatus = true;
}

if (rule.getAvgRt() > 0) {
if (rule.getAvgRt() >= 0) {
maxRt = Math.min(maxRt, rule.getAvgRt());
maxRtIsSet = true;
checkStatus = true;
}
if (rule.getMaxThread() > 0) {
if (rule.getMaxThread() >= 0) {
maxThread = Math.min(maxThread, rule.getMaxThread());
maxThreadIsSet = true;
checkStatus = true;
}

if (rule.getQps() > 0) {
if (rule.getQps() >= 0) {
qps = Math.min(qps, rule.getQps());
qpsIsSet = true;
checkStatus = true;


Loading…
취소
저장