Skip to content

Commit 8c602ac

Browse files
committed
fixup! fixup! fixup! fixup! feat(http): refactor node:http client instrumentation for portability
1 parent 4e59df3 commit 8c602ac

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.size-limit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ module.exports = [
221221
name: 'CDN Bundle (incl. Tracing, Replay, Logs, Metrics)',
222222
path: createCDNPath('bundle.tracing.replay.logs.metrics.min.js'),
223223
gzip: true,
224-
limit: '83 KB',
224+
limit: '84 KB',
225225
},
226226
{
227227
name: 'CDN Bundle (incl. Tracing, Replay, Feedback)',
@@ -283,7 +283,7 @@ module.exports = [
283283
path: createCDNPath('bundle.tracing.replay.logs.metrics.min.js'),
284284
gzip: false,
285285
brotli: false,
286-
limit: '255 KB',
286+
limit: '256 KB',
287287
},
288288
{
289289
name: 'CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed',
@@ -297,7 +297,7 @@ module.exports = [
297297
path: createCDNPath('bundle.tracing.replay.feedback.logs.metrics.min.js'),
298298
gzip: false,
299299
brotli: false,
300-
limit: '268 KB',
300+
limit: '269 KB',
301301
},
302302
// Next.js SDK (ESM)
303303
{

packages/core/src/integrations/http/types.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ export interface HttpIncomingMessage {
9393
export interface HttpExport {
9494
request: (...args: unknown[]) => HttpClientRequest;
9595
get: (...args: unknown[]) => HttpClientRequest;
96-
// TODO: Server, createServer
97-
[key: symbol | string]: unknown;
96+
[key: string]: unknown;
9897
}
9998

10099
export type HttpModuleExport = HttpExport | (HttpExport & { default: HttpExport });

0 commit comments

Comments
 (0)