REQ-3284: 查询数量过大告警

This commit is contained in:
yanglin 2024-11-29 10:46:07 +08:00
parent e456e36323
commit 5d26dcb614

View File

@ -160,9 +160,7 @@ class ProxyStatement extends StatementWrapper {
}
private boolean shouldWarnForPhase(String phase) {
if (phaseWarned.contains(phase)) return false;
phaseWarned.add(phase);
return true;
return phaseWarned.add(phase);
}
}