We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bb1e9c commit ef4f99fCopy full SHA for ef4f99f
packages/node/src/integrations/http.ts
@@ -101,6 +101,9 @@ function _createWrappedHandlerMaker(
101
return originalHandler.apply(this, arguments);
102
}
103
104
+ // TODO(kmclb): The cache below mirrors the one on the browser side, but in a node context it may actually break
105
+ // things, so figure that out and consider removing it
106
+
107
// apply user-provided filter (if any) and cache result for next time
108
const spanDecisionCache: { [key: string]: boolean } = {};
109
const shouldStartSpan = (url: string): boolean => {
0 commit comments