File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
packages/apm/src/integrations Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## 5.11.2
6+
57- [ apm] fix: Add new option to ` Tracing ` ` maxTransactionTimeout ` determines the max length of a transaction
68- [ hub] ref: Always also set transaction name on the top span in the scope
9+ - [ core] fix: Use event_id from hint given by top-level hub calls
710
811## 5.11.1
912
Original file line number Diff line number Diff line change @@ -265,10 +265,6 @@ export class Tracing implements Integration {
265265 * @deprecated
266266 */
267267 public static updateTransactionName ( name : string ) : void {
268- // const activeTransaction = Tracing._activeTransaction;
269- // if (!activeTransaction) {
270- // return;
271- // }
272268 const _getCurrentHub = Tracing . _getCurrentHub ;
273269 if ( _getCurrentHub ) {
274270 const hub = _getCurrentHub ( ) ;
@@ -278,8 +274,6 @@ export class Tracing implements Integration {
278274 } ) ;
279275 }
280276 }
281- // TODO
282- // (activeTransaction as any).transaction = name;
283277 }
284278
285279 /**
You can’t perform that action at this time.
0 commit comments