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: b20dc1e9cda1ea3a76b3f14c778c6816e5cc1c0c
  • Loading branch information
GoeLin committed Jan 11, 2024
1 parent 1ea0d08 commit 2abfc99
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

1 comment on commit 2abfc99

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.