From 62434a6bbce40c0b811dc12ca1a4a2d06464ad43 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Tue, 16 Jan 2024 13:06:46 -0600 Subject: [PATCH] fix: change default send_queue_limit to 500 (#4867) Clients subscribed to `transactions` over WebSocket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This commit changes the default configuration, not the default in code. Fix #4866 --- cfg/rippled-example.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cfg/rippled-example.cfg b/cfg/rippled-example.cfg index 1ae87e11f79..79de9b23041 100644 --- a/cfg/rippled-example.cfg +++ b/cfg/rippled-example.cfg @@ -1641,6 +1641,7 @@ port = 6006 ip = 127.0.0.1 admin = 127.0.0.1 protocol = ws +send_queue_limit = 500 [port_grpc] port = 50051 @@ -1651,6 +1652,7 @@ secure_gateway = 127.0.0.1 #port = 6005 #ip = 127.0.0.1 #protocol = wss +#send_queue_limit = 500 #-------------------------------------------------------------------------------