From 8d012d03e8139f90256b7aaf772d0a46d8d962bf Mon Sep 17 00:00:00 2001 From: John Freeman Date: Thu, 19 Feb 2026 18:06:21 +0900 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/xahaud-example.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cfg/xahaud-example.cfg b/cfg/xahaud-example.cfg index 42c3ee0ba..a11b0fa56 100644 --- a/cfg/xahaud-example.cfg +++ b/cfg/xahaud-example.cfg @@ -1701,6 +1701,7 @@ port = 6009 ip = 127.0.0.1 admin = 127.0.0.1 protocol = ws +send_queue_limit = 500 [port_grpc] port = 50051 @@ -1711,6 +1712,7 @@ secure_gateway = 127.0.0.1 #port = 6008 #ip = 127.0.0.1 #protocol = wss +#send_queue_limit = 500 #-------------------------------------------------------------------------------