8310629: java/security/cert/CertPathValidator/OCSP/OCSPTimeout.java fails with RuntimeException Server not ready

Reviewed-by: jnimeh
This commit is contained in:
Matthew Donovan 2023-07-18 10:45:41 +00:00
parent 4b9ec82451
commit b20dc1e9cd

View File

@ -189,7 +189,7 @@ public class OCSPTimeout {
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");
}