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
commit
826447bc82
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +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


Loading…
Cancel
Save