Skip to content

Commit 59cf7a1

Browse files
author
Ryan Baxter
authored
Extending wait time for IT
1 parent 7a9c6d0 commit 59cf7a1

File tree

1 file changed

+1
-1
lines changed
  • spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-configuration-watcher-it/src/test/java/org/springframework/cloud/kubernetes/configuration/watcher

1 file changed

+1
-1
lines changed

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-configuration-watcher-it/src/test/java/org/springframework/cloud/kubernetes/configuration/watcher/ActuatorRefreshRabbitMQIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public void handleError(ClientHttpResponse clientHttpResponse) throws IOExceptio
128128
() -> rest.getForEntity("http://localhost:80/it", String.class).getStatusCode().is2xxSuccessful());
129129

130130
// Wait a bit before we verify
131-
await().pollInterval(Duration.ofSeconds(1)).atMost(Duration.ofSeconds(90)).until(() -> {
131+
await().pollInterval(Duration.ofSeconds(1)).atMost(Duration.ofSeconds(600)).until(() -> {
132132
Boolean value = rest.getForObject("http://localhost:80/it", Boolean.class);
133133
log.info("Returned " + value + " from http://localhost:80/it");
134134
return value;

0 commit comments

Comments
 (0)