Skip to content

Commit

Permalink
Merge pull request #2862 from HenrikJannsen/increase-poolsize
Browse files Browse the repository at this point in the history
Increase poolsize. There is some threading issue for long running nod…
  • Loading branch information
HenrikJannsen authored Sep 29, 2024
2 parents 538075a + a5109c8 commit e4074db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
*/
@Slf4j
public class NetworkService implements PersistenceClient<NetworkServiceStore>, Service {
public static final ExecutorService NETWORK_IO_POOL = ExecutorFactory.newCachedThreadPool("Network.IO", 5, 300, 5);
public static final ExecutorService NETWORK_IO_POOL = ExecutorFactory.newCachedThreadPool("Network.IO", 5, 3000, 5);
public static final ExecutorService DISPATCHER = ExecutorFactory.newSingleThreadExecutor("Network.dispatcher");

@Getter
Expand Down

0 comments on commit e4074db

Please sign in to comment.