diff --git a/lib/instrumenter/src/instrumenter.ts b/lib/instrumenter/src/instrumenter.ts index 16562248790..dc9a1f0b2a0 100644 --- a/lib/instrumenter/src/instrumenter.ts +++ b/lib/instrumenter/src/instrumenter.ts @@ -450,7 +450,9 @@ export class Instrumenter { // Exceptions inside callbacks should bubble up to the parent call. if (call.ancestors.length) { - Object.defineProperty(e, 'callId', { value: call.id }); + if (!Object.prototype.hasOwnProperty.call(e, 'callId')) { + Object.defineProperty(e, 'callId', { value: call.id }); + } throw e; }