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 6c282ed commit 7186fa9Copy full SHA for 7186fa9
packages/node/src/integrations/http/SentryHttpInstrumentation.ts
@@ -176,7 +176,8 @@ export class SentryHttpInstrumentation extends InstrumentationBase<SentryHttpIns
176
subscribe('http.client.request.error', onHttpClientRequestError);
177
178
// NOTE: This channel only exist since Node 23
179
- // Before that, outgoing requests are not patched, sadly
+ // Before that, outgoing requests are not patched
180
+ // and trace headers are not propagated, sadly.
181
if (this.getConfig().propagateTraceInOutgoingRequests) {
182
subscribe('http.client.request.created', onHttpClientRequestCreated);
183
}
0 commit comments