Fix bubbling multiple levels

This commit is contained in:
Gert Hengeveld 2022-06-23 23:01:50 +02:00
parent ee3fe71c2c
commit 9c427fe8a9

View File

@ -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;
}