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
This commit is contained in:
John Freeman
2024-01-16 13:06:46 -06:00
committed by GitHub
parent 5a7af5bb77
commit fe4d6c68b5

View File

@@ -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
#-------------------------------------------------------------------------------