mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Increase thread pool size at Broadcaster
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
9d820ba83e
commit
b7d1a9da22
1 changed files with 1 additions and 1 deletions
|
@ -71,8 +71,8 @@ public class Broadcaster implements BroadcastHandler.ResultHandler {
|
||||||
this.peerManager = peerManager;
|
this.peerManager = peerManager;
|
||||||
|
|
||||||
ThreadPoolExecutor threadPoolExecutor = Utilities.getThreadPoolExecutor("Broadcaster",
|
ThreadPoolExecutor threadPoolExecutor = Utilities.getThreadPoolExecutor("Broadcaster",
|
||||||
maxConnections,
|
|
||||||
maxConnections * 2,
|
maxConnections * 2,
|
||||||
|
maxConnections * 3,
|
||||||
30,
|
30,
|
||||||
30);
|
30);
|
||||||
executor = MoreExecutors.listeningDecorator(threadPoolExecutor);
|
executor = MoreExecutors.listeningDecorator(threadPoolExecutor);
|
||||||
|
|
Loading…
Add table
Reference in a new issue