File tree 2 files changed +3
-6
lines changed
packages/apm/src/integrations
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## 5.11.2
6
+
5
7
- [ apm] fix: Add new option to ` Tracing ` ` maxTransactionTimeout ` determines the max length of a transaction
6
8
- [ 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
7
10
8
11
## 5.11.1
9
12
Original file line number Diff line number Diff line change @@ -265,10 +265,6 @@ export class Tracing implements Integration {
265
265
* @deprecated
266
266
*/
267
267
public static updateTransactionName ( name : string ) : void {
268
- // const activeTransaction = Tracing._activeTransaction;
269
- // if (!activeTransaction) {
270
- // return;
271
- // }
272
268
const _getCurrentHub = Tracing . _getCurrentHub ;
273
269
if ( _getCurrentHub ) {
274
270
const hub = _getCurrentHub ( ) ;
@@ -278,8 +274,6 @@ export class Tracing implements Integration {
278
274
} ) ;
279
275
}
280
276
}
281
- // TODO
282
- // (activeTransaction as any).transaction = name;
283
277
}
284
278
285
279
/**
You can’t perform that action at this time.
0 commit comments