Skip to content

Commit

Permalink
meta: Prepare 5.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Jan 29, 2020
1 parent 6cc62f9 commit bea74d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

## Unreleased

## 5.11.2

- [apm] fix: Add new option to `Tracing` `maxTransactionTimeout` determines the max length of a transaction
- [hub] ref: Always also set transaction name on the top span in the scope
- [core] fix: Use event_id from hint given by top-level hub calls

## 5.11.1

Expand Down
6 changes: 0 additions & 6 deletions packages/apm/src/integrations/tracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,6 @@ export class Tracing implements Integration {
* @deprecated
*/
public static updateTransactionName(name: string): void {
// const activeTransaction = Tracing._activeTransaction;
// if (!activeTransaction) {
// return;
// }
const _getCurrentHub = Tracing._getCurrentHub;
if (_getCurrentHub) {
const hub = _getCurrentHub();
Expand All @@ -278,8 +274,6 @@ export class Tracing implements Integration {
});
}
}
// TODO
// (activeTransaction as any).transaction = name;
}

/**
Expand Down

0 comments on commit bea74d3

Please sign in to comment.