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 ae37b6f commit 0ac3d31Copy full SHA for 0ac3d31
packages/core/src/tracing/transaction.ts
@@ -44,6 +44,8 @@ export class Transaction extends SpanClass implements TransactionInterface {
44
*/
45
public constructor(transactionContext: TransactionContext, hub?: Hub) {
46
super(transactionContext);
47
+ // We need to delete description since it's set by the Span class constructor
48
+ // but not needed for transactions.
49
delete this.description;
50
51
this._measurements = {};
0 commit comments