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 5d33b15 commit 8d00e62Copy full SHA for 8d00e62
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