Pochatkin commented on code in PR #1698:
URL: https://github.com/apache/ignite-3/pull/1698#discussion_r1113927232


##########
modules/network/src/main/java/org/apache/ignite/network/DefaultMessagingService.java:
##########
@@ -82,12 +82,12 @@ public class DefaultMessagingService extends 
AbstractMessagingService {
     private final AtomicLong correlationIdGenerator = new AtomicLong();
 
     /** Executor for outbound messages. */
-    private final ExecutorService outboundExecutor = 
Executors.newSingleThreadExecutor(
+    private final ExecutorService outboundExecutor = 
Executors.newFixedThreadPool(2,
             new NamedThreadFactory("MessagingService-outbound-", LOG)
     );
 
     /** Executor for inbound messages. */
-    private final ExecutorService inboundExecutor = 
Executors.newSingleThreadExecutor(
+    private final ExecutorService inboundExecutor = 
Executors.newFixedThreadPool(2,

Review Comment:
   I will revert it for now



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to