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 236cb24 commit 93ee627Copy full SHA for 93ee627
packages/dd-trace/src/appsec/rasp/fs-plugin.js
@@ -35,6 +35,10 @@ class AppsecFsPlugin extends Plugin {
35
this.addBind('apm:fs:operation:finish', this._onFsOperationFinishOrRenderEnd)
36
this.addBind('tracing:datadog:express:response:render:start', this._onResponseRenderStart)
37
this.addBind('tracing:datadog:express:response:render:end', this._onFsOperationFinishOrRenderEnd)
38
+ // TODO Remove this when dc-polyfill is fixed&updated
39
+ // hack to node 18 and early 20.x
40
+ // with dc-polyfill addBind is not enough to force a channel.hasSubscribers === true
41
+ this.addSub('tracing:datadog:express:response:render:start', () => {})
42
43
super.configure(true)
44
}
0 commit comments