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 the bug that resource name displayed in ClusterNode-related command APIs for SphU.entry(method) is incorrect (
#1078
)
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao
GitHub
5 years ago
parent
94026399bf
commit
826447bc82
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slotchain/MethodResourceWrapper.java
+ 1
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slotchain/MethodResourceWrapper.java
View File
@@ -47,7 +47,7 @@ public class MethodResourceWrapper extends ResourceWrapper {
@Override
public String getShowName() {
return
IdUtil.truncate(this.
name
)
;
return name;
}
@Override
Write
Preview
Loading…
Cancel
Save