We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea7b5d commit 43496a8Copy full SHA for 43496a8
packages/tracing/src/idletransaction.ts
@@ -238,8 +238,7 @@ export class IdleTransaction extends Transaction {
238
return;
239
}
240
241
- const keys = Object.keys(this.activities);
242
- const heartbeatString = keys.length ? keys.reduce((prev: string, current: string) => prev + current) : '';
+ const heartbeatString = Object.keys(this.activities).join('');
243
244
if (heartbeatString === this._prevHeartbeatString) {
245
this._heartbeatCounter += 1;
0 commit comments