aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-10-10 15:45:34 +0200
committerGitHub <noreply@github.com>2023-10-10 15:45:34 +0200
commit7564d59acf10f940ea244f1ec4163eb7d9ba893a (patch)
tree3c5490175f15cbcc5ac1e0ed700885eb97f3d1a7 /controller-server/src/test/java/com
parent2490f1b88836af294c1cf427c5703dbdc4e690c0 (diff)
parentc32236ee217146f65a3a6ae8764cfd53a4e0e2a8 (diff)
Merge pull request #28852 from vespa-engine/jonmv/no-wait-for-initial-aws-lb-checks-in-dev-first-time
Avoid wait for health check for first-time dev deployments
Diffstat (limited to 'controller-server/src/test/java/com')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
index ed473d07f27..259e877afd9 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
@@ -386,7 +386,7 @@ public class ConfigServerMock extends AbstractComponent implements ConfigServer
@Override
public Availability verifyEndpoints(DeploymentId deploymentId, List<Endpoint> zoneEndpoints) {
- return mockTesterCloud.verifyEndpoints(deploymentId, zoneEndpoints); // Wraps the same name service mock, which is updated by test harness.
+ return mockTesterCloud.verifyEndpoints(deploymentId, zoneEndpoints, false); // Wraps the same name service mock, which is updated by test harness.
}
/** Add any of given loadBalancers that do not already exist to the load balancers in zone */