Skip to content

Commit df06b68

Browse files
committed
fix: adjustment to span names
1 parent 25ba541 commit df06b68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/nuxt/src/runtime/plugins/storage.server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,11 @@ function createSpanStartOptions(
200200
};
201201

202202
if (key) {
203-
attributes[SEMANTIC_ATTRIBUTE_CACHE_KEY] = `${mountBase}${key}`;
203+
attributes[SEMANTIC_ATTRIBUTE_CACHE_KEY] = key;
204204
}
205205

206206
return {
207-
name: `${mountBase}${key}`,
207+
name: `${mountBase} ${key}`,
208208
attributes,
209209
};
210210
}

0 commit comments

Comments
 (0)