This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
wangjx
/
sentinel
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix bug for completing entry with parameters in SentinelResourceAspect
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao
5 years ago
parent
1d0b5fae6a
commit
53a4e16144
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
sentinel-extension/sentinel-annotation-aspectj/src/main/java/com/alibaba/csp/sentinel/annotation/aspectj/SentinelResourceAspect.java
+ 1
- 1
sentinel-extension/sentinel-annotation-aspectj/src/main/java/com/alibaba/csp/sentinel/annotation/aspectj/SentinelResourceAspect.java
View File
@@ -62,7 +62,7 @@ public class SentinelResourceAspect extends AbstractSentinelAspectSupport {
throw ex;
} finally {
if (entry != null) {
entry.exit();
entry.exit(
1, pjp.getArgs()
);
}
}
}
Write
Preview
Loading…
Cancel
Save