We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c30b424 commit e7007b4Copy full SHA for e7007b4
src/url.zig
@@ -120,7 +120,7 @@ test "Url resolve size" {
120
var url_string: [511]u8 = undefined; // Currently this is the largest url we support, it is however recommmended to at least support 2000 characters
121
@memset(&url_string, 'a');
122
123
- var buf: [2048]u8 = undefined; // This is approximately the required size to support the current largest supported URL
+ var buf: [8192]u8 = undefined; // This is approximately the required size to support the current largest supported URL
124
var fba = std.heap.FixedBufferAllocator.init(&buf);
125
const out_url = try url.resolve(fba.allocator(), &url_string);
126
0 commit comments