Tibor17 commented on a change in pull request #240: [SUREFIRE-1658] TCP/IP 
Channel for forked Surefire JVM. Extensions API and SPI. Polymorphism for 
remote and local process communication.
URL: https://github.com/apache/maven-surefire/pull/240#discussion_r382901345
 
 

 ##########
 File path: 
surefire-booter/src/main/java/org/apache/maven/surefire/booter/BooterDeserializer.java
 ##########
 @@ -58,6 +60,18 @@ public BooterDeserializer( InputStream inputStream )
         properties = SystemPropertyManager.loadProperties( inputStream );
     }
 
+    /**
+     * Describes the current connection channel used by the client in the 
forked JVM
+     * in order to connect to the plugin process.
+     *
+     * @return connection string (must not be null)
+     */
+    @Nonnull
+    public String getConnectionString()
+    {
+        return properties.getProperty( FORK_NODE_CONNECTION_STRING );
 
 Review comment:
   In terms of sequential diagram the auth may slow down the tests due to the 
server has to wait for the incoming token. Other option is to keep the JVM 
startup, let it send the token on the top in `ForkedBooter` but dont wait and 
keep going. If bad token is sent, the `ForkStarter` can nicely shutdown the JVM 
and stop the `CommandReader`. Worse situation is when no token is send in the 
authentication.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to