We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7829210 commit d3f8f7aCopy full SHA for d3f8f7a
src/spec-utils/httpRequest.ts
@@ -87,7 +87,7 @@ export async function requestResolveHeaders(options: { type: string; url: string
87
const parsed = new url.URL(options.url);
88
const reqOptions: RequestOptions & tls.CommonConnectionOptions & FollowOptions<any> = {
89
hostname: parsed.hostname,
90
- maxBodyLength: 100 * 1024 * 1024,
+ maxBodyLength: Infinity,
91
port: parsed.port,
92
path: parsed.pathname + parsed.search,
93
method: options.type,
0 commit comments