Skip to content

Commit

Permalink
8310629: java/security/cert/CertPathValidator/OCSP/OCSPTimeout.java f…
Browse files Browse the repository at this point in the history
…ails with RuntimeException Server not ready

Backport-of: b20dc1e
  • Loading branch information
Alexey Bakhtin committed Jan 17, 2025
1 parent 2b8c19a commit 6a5aaaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private static void createPKI() throws Exception {
rootOcsp.start();

// Wait 5 seconds for server ready
boolean readyStatus = rootOcsp.awaitServerReady(5, TimeUnit.SECONDS);
boolean readyStatus = rootOcsp.awaitServerReady(60, TimeUnit.SECONDS);
if (!readyStatus) {
throw new RuntimeException("Server not ready");
}
Expand Down

0 comments on commit 6a5aaaa

Please sign in to comment.