Change Executor type for Transport Layer

This commit is contained in:
Andrew Shvayka 2019-12-05 15:54:00 +02:00
parent 0b6a68ad30
commit e31b7ba988

View File

@ -47,7 +47,7 @@ public class TransportContext {
@PostConstruct
public void init() {
executor = Executors.newCachedThreadPool();
executor = Executors.newWorkStealingPool(50);
}
@PreDestroy