From 48e1b43e59eaacc936ac15010bbd439adcdc0b68 Mon Sep 17 00:00:00 2001 From: Kai Tamkun Date: Tue, 15 Jul 2025 20:13:51 -0700 Subject: [PATCH] See what happens if we don't use arenas in HTTPThread --- src/http/HTTPThread.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/HTTPThread.zig b/src/http/HTTPThread.zig index 23e1a088e6..83890c8d89 100644 --- a/src/http/HTTPThread.zig +++ b/src/http/HTTPThread.zig @@ -195,7 +195,7 @@ pub fn init(opts: *const InitOpts) void { pub fn onStart(opts: InitOpts) void { Output.Source.configureNamedThread("HTTP Client"); bun.http.default_arena = Arena.init() catch unreachable; - bun.http.default_allocator = bun.http.default_arena.allocator(); + bun.http.default_allocator = bun.default_allocator; const loop = bun.JSC.MiniEventLoop.initGlobal(null);