@@ -449,7 +449,8 @@ export class MongoDBInstrumentation extends InstrumentationBase<MongoDBInstrumen
449449
450450 const hasNoParentSpan = currentSpan === undefined ;
451451 const requireParentSpan = instrumentation . getConfig ( ) . requireParentSpan ;
452- const skipInstrumentation = requireParentSpan === true && hasNoParentSpan ;
452+ const skipInstrumentation =
453+ requireParentSpan === true && hasNoParentSpan ;
453454
454455 const resultHandler =
455456 typeof options === 'function' ? options : callback ;
@@ -506,7 +507,8 @@ export class MongoDBInstrumentation extends InstrumentationBase<MongoDBInstrumen
506507
507508 const hasNoParentSpan = currentSpan === undefined ;
508509 const requireParentSpan = instrumentation . getConfig ( ) . requireParentSpan ;
509- const skipInstrumentation = requireParentSpan === true && hasNoParentSpan ;
510+ const skipInstrumentation =
511+ requireParentSpan === true && hasNoParentSpan ;
510512
511513 const resultHandler =
512514 typeof options === 'function' ? options : callback ;
@@ -655,7 +657,8 @@ export class MongoDBInstrumentation extends InstrumentationBase<MongoDBInstrumen
655657
656658 const hasNoParentSpan = currentSpan === undefined ;
657659 const requireParentSpan = instrumentation . getConfig ( ) . requireParentSpan ;
658- const skipInstrumentation = requireParentSpan === true && hasNoParentSpan ;
660+ const skipInstrumentation =
661+ requireParentSpan === true && hasNoParentSpan ;
659662
660663 const resultHandler =
661664 typeof options === 'function' ? options : callback ;
@@ -725,7 +728,8 @@ export class MongoDBInstrumentation extends InstrumentationBase<MongoDBInstrumen
725728
726729 const hasNoParentSpan = currentSpan === undefined ;
727730 const requireParentSpan = instrumentation . getConfig ( ) . requireParentSpan ;
728- const skipInstrumentation = requireParentSpan === true && hasNoParentSpan ;
731+ const skipInstrumentation =
732+ requireParentSpan === true && hasNoParentSpan ;
729733
730734 const resultHandler =
731735 typeof options === 'function' ? options : callback ;
0 commit comments