8096 isnt 8kb, 8192 is (#8296)

Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
Meghan Denny
2024-01-19 23:16:11 -08:00
committed by GitHub
parent c71bad205c
commit b433beb016
21 changed files with 26 additions and 28 deletions

View File

@@ -1852,7 +1852,7 @@ pub const Example = struct {
const http_proxy: ?URL = env_loader.getHttpProxy(api_url);
const mutable = try ctx.allocator.create(MutableString);
mutable.* = try MutableString.init(ctx.allocator, 8096);
mutable.* = try MutableString.init(ctx.allocator, 8192);
// ensure very stable memory address
var async_http: *HTTP.AsyncHTTP = ctx.allocator.create(HTTP.AsyncHTTP) catch unreachable;