We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fb70e0 commit d4d6e1dCopy full SHA for d4d6e1d
packages/opentelemetry-context-base/src/context.ts
@@ -29,7 +29,7 @@ export class Context {
29
30
/** Get a key to uniquely identify a context value */
31
public static createKey(description: string) {
32
- return Symbol(description);
+ return Symbol.for(description);
33
}
34
35
/**
0 commit comments