You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2020/04/10 09:57:57 UTC

[GitHub] [ignite] agoncharuk commented on a change in pull request #7639: IGNITE-12438 Inverse TCP communication via Discovery implemented.

agoncharuk commented on a change in pull request #7639: IGNITE-12438 Inverse TCP communication via Discovery implemented.
URL: https://github.com/apache/ignite/pull/7639#discussion_r406691258
 
 

 ##########
 File path: modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
 ##########
 @@ -2323,6 +2318,14 @@ private void dumpInfo(StringBuilder sb, UUID dstNodeId) {
             throw new IgniteSpiException("Failed to initialize TCP server: " + locHost, e);
         }
 
+        EnvironmentType envType = ignite.configuration().getEnvironmentType();
+
+        if (usePairedConnections) {
+            if (envType == EnvironmentType.VIRTUALIZED)
+                throw new IgniteSpiException("Node using paired connections " +
+                    "is not allowed to start in virtualized environment.");
 
 Review comment:
   We need to suggest which configuration properties a user has to change in order to resolve this error

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services