mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Increase queue capacity from 10 to 30.
https://github.com/bisq-network/bisq/issues/6480 reported reaching the limit with the current settings. Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
d47d84dede
commit
59073274fc
@ -103,12 +103,12 @@ public abstract class NetworkNode implements MessageListener {
|
||||
connectionExecutor = Utilities.getListeningExecutorService("NetworkNode.connection",
|
||||
maxConnections * 2,
|
||||
maxConnections * 3,
|
||||
10,
|
||||
30,
|
||||
60);
|
||||
sendMessageExecutor = Utilities.getListeningExecutorService("NetworkNode.sendMessage",
|
||||
maxConnections * 2,
|
||||
maxConnections * 3,
|
||||
10,
|
||||
30,
|
||||
60);
|
||||
serverExecutor = Utilities.getSingleThreadExecutor("NetworkNode.server-" + servicePort);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user