mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user