Increase timeout for integration tests (#1283)

This commit is contained in:
erabii
2023-04-04 21:27:12 +03:00
committed by GitHub
parent d9c458347d
commit 10e3455efd

View File

@@ -455,7 +455,7 @@ public final class Util {
private void waitForDeployment(String namespace, V1Deployment deployment) {
String deploymentName = deploymentName(deployment);
await().pollInterval(Duration.ofSeconds(1)).atMost(600, TimeUnit.SECONDS)
await().pollInterval(Duration.ofSeconds(1)).atMost(900, TimeUnit.SECONDS)
.until(() -> isDeploymentReady(deploymentName, namespace));
}