Skip to content

Commit 58d933d

Browse files
Reduced RECV_QUEUE_LIMIT to 1024
1 parent 9dd4355 commit 58d933d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/impl/internals.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const size_t DEFAULT_REMOTE_MAX_MESSAGE_SIZE = 65536; // Remote max message
4343

4444
const size_t DEFAULT_WS_MAX_MESSAGE_SIZE = 256 * 1024; // Default max message size for WebSockets
4545

46-
const size_t RECV_QUEUE_LIMIT = 1024 * 1024; // Max per-channel queue size
46+
const size_t RECV_QUEUE_LIMIT = 1024; // Max per-channel queue size (messages)
4747

4848
const int MIN_THREADPOOL_SIZE = 4; // Minimum number of threads in the global thread pool (>= 2)
4949

0 commit comments

Comments
 (0)