2023-05-05 05:10:04 +00:00
|
|
|
back in the day when net_unittests were ran, the block arena size was not big
|
|
|
|
enough for some reason. should look at this again
|
|
|
|
--
|
2023-01-11 00:40:45 +00:00
|
|
|
--- a/net/third_party/quiche/src/quiche/quic/core/quic_one_block_arena.h
|
|
|
|
+++ b/net/third_party/quiche/src/quiche/quic/core/quic_one_block_arena.h
|
|
|
|
@@ -69,7 +69,7 @@
|
|
|
|
|
|
|
|
// QuicConnections currently use around 1KB of polymorphic types which would
|
|
|
|
// ordinarily be on the heap. Instead, store them inline in an arena.
|
|
|
|
-using QuicConnectionArena = QuicOneBlockArena<1280>;
|
|
|
|
+using QuicConnectionArena = QuicOneBlockArena<1504>;
|
|
|
|
|
|
|
|
} // namespace quic
|
|
|
|
|