From 9d3b2d70e1c74cdbbc3e11af683fc2dd3fdce6d3 Mon Sep 17 00:00:00 2001 From: Ignasi Barrera Date: Wed, 15 Apr 2015 23:40:32 +0200 Subject: [PATCH] Fix the HealthCheck live tests --- .../features/HttpHealthCheckApiLiveTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/providers/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java b/providers/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java index 49e9cc5fca..f3dcad914b 100644 --- a/providers/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java +++ b/providers/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java @@ -46,8 +46,8 @@ public class HttpHealthCheckApiLiveTest extends BaseGoogleComputeEngineApiLiveTe .port(56) .checkIntervalSec(40) .timeoutSec(40) - .healthyThreshold(30) - .unhealthyThreshold(15) + .healthyThreshold(5) + .unhealthyThreshold(3) .description("A First Health Check!") .buildWithDefaults(); assertOperationDoneSuccessfully(api().insert(HTTP_HEALTH_CHECK_NAME, options));