joakime commented on a change in pull request #46: [MNG-6731] Jetty
getLocalPort() returns -1 resulting in build failures
URL:
https://github.com/apache/maven-integration-testing/pull/46#discussion_r314284936
##########
File path:
core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0553SettingsAuthzEncryptionTest.java
##########
@@ -86,18 +93,13 @@ protected void setUp()
handlerList.addHandler( repoHandler );
handlerList.addHandler( new DefaultHandler() );
- server = new Server( 0 );
server.setHandler( handlerList );
server.start();
- while ( !server.isRunning() || !server.isStarted() )
+ if ( server.isFailed() )
Review comment:
Server could have successfully started up, and then be successfully stopped,
before this line hits.
In this scenario, the server LifeCycle state is STOPPED, not FAILED.
----------------------------------------------------------------
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