diff options
Diffstat (limited to 'src/http/async_message.zig')
-rw-r--r-- | src/http/async_message.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/async_message.zig b/src/http/async_message.zig index d68c58cb0..5fce3488b 100644 --- a/src/http/async_message.zig +++ b/src/http/async_message.zig @@ -4,7 +4,7 @@ const AsyncIO = @import("io"); pub const buffer_pool_len = std.math.maxInt(u16) - 64; pub const BufferPoolBytes = [buffer_pool_len]u8; -pub const BufferPool = ObjectPool(BufferPoolBytes, null, false); +pub const BufferPool = ObjectPool(BufferPoolBytes, null, false, 4); const AsyncMessage = @This(); |