Skip to content

Commit 4dfcc1f

Browse files
committed
resourceName
1 parent a4de5b4 commit 4dfcc1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mse-simple-demo/C/src/main/java/com/alibabacloud/mse/demo/c/CController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public String cZone() {
8585
if (throwException) {
8686
throw new RuntimeException();
8787
}
88-
try (Entry entry2 = SphU.entry("H\"elloWorld-c-2", EntryType.IN)) {
88+
try (Entry entry2 = SphU.entry("HelloWorld-c-2", EntryType.IN)) {
8989
try {
9090
log.debug("Hello Sentinel!2");
9191
return "C" + serviceTag + "[" + currentZone + "]";
@@ -108,7 +108,7 @@ public String spring_boot() {
108108
public String flow() throws ExecutionException, InterruptedException {
109109
try (Entry entry1 = SphU.entry("HelloWorld-c-flow-1", EntryType.IN)) {
110110
log.debug("Hello Sentinel!1");
111-
try (Entry entry2 = SphU.entry("H\"elloWorld-c-flow-2", EntryType.IN)) {
111+
try (Entry entry2 = SphU.entry("HelloWorld-c-flow-2", EntryType.IN)) {
112112
log.debug("Hello Sentinel!2");
113113
long sleepTime = 5 + RANDOM.nextInt(5);
114114
silentSleep(sleepTime);

0 commit comments

Comments
 (0)