Fix the HealthCheck live tests

This commit is contained in:
Ignasi Barrera 2015-04-15 23:40:32 +02:00
parent 3c5f3ae66e
commit 9d3b2d70e1
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ public class HttpHealthCheckApiLiveTest extends BaseGoogleComputeEngineApiLiveTe
.port(56) .port(56)
.checkIntervalSec(40) .checkIntervalSec(40)
.timeoutSec(40) .timeoutSec(40)
.healthyThreshold(30) .healthyThreshold(5)
.unhealthyThreshold(15) .unhealthyThreshold(3)
.description("A First Health Check!") .description("A First Health Check!")
.buildWithDefaults(); .buildWithDefaults();
assertOperationDoneSuccessfully(api().insert(HTTP_HEALTH_CHECK_NAME, options)); assertOperationDoneSuccessfully(api().insert(HTTP_HEALTH_CHECK_NAME, options));