Remove duplicate "exceptionBelongsTo" check in SentinelResourceAspect (#964)

This commit is contained in:
0704681032 2019-08-05 13:39:50 +08:00 committed by Eric Zhao
parent a0f13bad38
commit ebcf89024c
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class SentinelResourceAspect extends AbstractSentinelAspectSupport {
throw ex;
}
if (exceptionBelongsTo(ex, annotation.exceptionsToTrace())) {
traceException(ex, annotation);
traceException(ex);
return handleFallback(pjp, annotation, ex);
}