ソースを参照

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年前
コミット
826447bc82
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  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 ファイルの表示

@@ -47,7 +47,7 @@ public class MethodResourceWrapper extends ResourceWrapper {

@Override
public String getShowName() {
return IdUtil.truncate(this.name);
return name;
}

@Override


読み込み中…
キャンセル
保存