Skip to content

Commit

Permalink
Correct the timeout value
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Gooderham <[email protected]>
  • Loading branch information
turkeylurkey committed Oct 29, 2024
1 parent 7c27b92 commit 1abe31f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private void createAndRunDebugConfiguration(ProgressIndicator indicator, Liberty
*/
private String waitForSocketActivation(ProgressIndicator monitor, LibertyModule libertyModule, String host, int debugPort) throws Exception {
byte[] handshakeString = "JDWP-Handshake".getBytes(StandardCharsets.US_ASCII);
int retryLimit = 3600; // seconds to wait for Liberty dev mode to start. It can take 4-5 minutes during testing.
int retryLimit = 360; // seconds to wait for Liberty dev mode to start. It can take 4-5 minutes during testing.
int retryInc = 3; // time to wait after each try

// Retrieve the location of the server.env in the liberty installation at the default location (wpl/usr/servers/<serverName>).
Expand Down

0 comments on commit 1abe31f

Please sign in to comment.