File tree 2 files changed +3
-0
lines changed
datadog-instrumentations/src
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const pathToRegExp = require('path-to-regexp')
5
5
const shimmer = require ( '../../datadog-shimmer' )
6
6
const { addHook, channel } = require ( './helpers/instrument' )
7
7
8
+ // TODO: Move this function to a shared file between Express and Router
8
9
function createWrapRouterMethod ( name ) {
9
10
const enterChannel = channel ( `apm:${ name } :middleware:enter` )
10
11
const exitChannel = channel ( `apm:${ name } :middleware:exit` )
Original file line number Diff line number Diff line change @@ -18,10 +18,12 @@ class Subscription {
18
18
}
19
19
20
20
enable ( ) {
21
+ // TODO: Once Node.js v18.6.0 is no longer supported, we should use `dc.subscribe(event, handler)` instead
21
22
this . _channel . subscribe ( this . _handler )
22
23
}
23
24
24
25
disable ( ) {
26
+ // TODO: Once Node.js v18.6.0 is no longer supported, we should use `dc.unsubscribe(event, handler)` instead
25
27
this . _channel . unsubscribe ( this . _handler )
26
28
}
27
29
}
You can’t perform that action at this time.
0 commit comments