Skip to content

Commit 6b2f32e

Browse files
authored
Merge pull request #1141 from devcontainers/chrmarti/hurt-marmot
Remove request body limit
2 parents 7829210 + d3f8f7a commit 6b2f32e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/spec-utils/httpRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export async function requestResolveHeaders(options: { type: string; url: string
8787
const parsed = new url.URL(options.url);
8888
const reqOptions: RequestOptions & tls.CommonConnectionOptions & FollowOptions<any> = {
8989
hostname: parsed.hostname,
90-
maxBodyLength: 100 * 1024 * 1024,
90+
maxBodyLength: Infinity,
9191
port: parsed.port,
9292
path: parsed.pathname + parsed.search,
9393
method: options.type,

0 commit comments

Comments
 (0)