Fix RedirectURLTooLong errors (#5786)

The URL to download the manifest for Artifact Registry in Google
is larger than 4092 bytes.

cf. issue #4748
This commit is contained in:
ggobbe
2023-09-20 09:18:47 +02:00
committed by GitHub
parent edee1e3d04
commit 4a0eb19038

View File

@@ -33,7 +33,7 @@ const BoringSSL = bun.BoringSSL;
const X509 = @import("./bun.js/api/bun/x509.zig");
const c_ares = @import("./deps/c_ares.zig");
const URLBufferPool = ObjectPool([4096]u8, null, false, 10);
const URLBufferPool = ObjectPool([8192]u8, null, false, 10);
const uws = bun.uws;
pub const MimeType = @import("./http/mime_type.zig");
pub const URLPath = @import("./http/url_path.zig");