状态校验修改

This commit is contained in:
张松 2025-03-27 17:00:35 +08:00
parent d6dcb8eeee
commit d3ae230c83
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class DebounceAspect {
try {
return joinPoint.proceed();
}catch (Exception e) {
if (e instanceof SqxException && ((SqxException) e).getCode() == 403) {
if (e instanceof SqxException && ((SqxException) e).getCode() == 407) {
methodExecutionTimeMap.remove(targetValue);
}
throw e;