Skip to content

Commit d3e3815

Browse files
committed
Shrink TransitEventBuffer in backend when frontend unbounded queue is explicitly shrunk
1 parent 0680e29 commit d3e3815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/quill/backend/BackendWorker.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ class BackendWorker
11631163

11641164
if (read_result.allocation)
11651165
{
1166-
if (read_result.new_capacity < read_result.previous_capacity)
1166+
if ((read_result.new_capacity < read_result.previous_capacity) && thread_context->_transit_event_buffer)
11671167
{
11681168
// The user explicitly requested to shrink the queue, indicating a preference for low memory
11691169
// usage. To align with this intent, we also request shrinking the backend buffer.

0 commit comments

Comments
 (0)