File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/opentelemetry/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ export function wrapContextManagerClass<ContextManagerInstance extends ContextMa
31
31
32
32
// @ts -expect-error TS does not like this, but we know this is fine
33
33
class SentryContextManager extends ContextManagerClass {
34
- public constructor ( ) {
35
- super ( ) ;
34
+ public constructor ( ... args : unknown [ ] ) {
35
+ super ( ... args ) ;
36
36
setIsSetup ( 'SentryContextManager' ) ;
37
37
}
38
38
/**
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export class SentryPropagator extends W3CBaggagePropagator {
155
155
156
156
const propagationContext = propagationContextFromHeaders ( sentryTrace , baggage ) ;
157
157
158
- // Add remote parent span context,
158
+ // Add remote parent span context
159
159
const ctxWithSpanContext = getContextWithRemoteActiveSpan ( context , { sentryTrace, baggage } ) ;
160
160
161
161
// Also update the scope on the context (to be sure this is picked up everywhere)
You can’t perform that action at this time.
0 commit comments