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
3131
3232 // @ts -expect-error TS does not like this, but we know this is fine
3333 class SentryContextManager extends ContextManagerClass {
34- public constructor ( ) {
35- super ( ) ;
34+ public constructor ( ... args : unknown [ ] ) {
35+ super ( ... args ) ;
3636 setIsSetup ( 'SentryContextManager' ) ;
3737 }
3838 /**
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export class SentryPropagator extends W3CBaggagePropagator {
155155
156156 const propagationContext = propagationContextFromHeaders ( sentryTrace , baggage ) ;
157157
158- // Add remote parent span context,
158+ // Add remote parent span context
159159 const ctxWithSpanContext = getContextWithRemoteActiveSpan ( context , { sentryTrace, baggage } ) ;
160160
161161 // 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