You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2015/04/16 00:14:11 UTC

[1/2] jclouds-labs-google git commit: Git ignore Eclipse annotation processing files

Repository: jclouds-labs-google
Updated Branches:
  refs/heads/master b341a948a -> 874b207e8


Git ignore Eclipse annotation processing files


Project: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/commit/2f4f335a
Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/tree/2f4f335a
Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/diff/2f4f335a

Branch: refs/heads/master
Commit: 2f4f335a823a1c6028b7ab41843e7ae2c64363b5
Parents: b341a94
Author: Ignasi Barrera <na...@apache.org>
Authored: Wed Apr 15 23:32:19 2015 +0200
Committer: Ignasi Barrera <na...@apache.org>
Committed: Wed Apr 15 23:32:19 2015 +0200

----------------------------------------------------------------------
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/blob/2f4f335a/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 3242d22..a44e218 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,5 @@ TAGS
 atlassian-ide-plugin.xml
 .DS_Store
 .java-version
+.apt_generated
+.factorypath


[2/2] jclouds-labs-google git commit: Fix the HealthCheck live tests

Posted by na...@apache.org.
Fix the HealthCheck live tests


Project: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/commit/874b207e
Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/tree/874b207e
Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/diff/874b207e

Branch: refs/heads/master
Commit: 874b207e8f568b81af97e094634d1978ed546ef8
Parents: 2f4f335
Author: Ignasi Barrera <na...@apache.org>
Authored: Wed Apr 15 23:40:32 2015 +0200
Committer: Ignasi Barrera <na...@apache.org>
Committed: Wed Apr 15 23:40:32 2015 +0200

----------------------------------------------------------------------
 .../googlecomputeengine/features/HttpHealthCheckApiLiveTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/blob/874b207e/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java
----------------------------------------------------------------------
diff --git a/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java b/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java
index 49e9cc5..f3dcad9 100644
--- a/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/features/HttpHealthCheckApiLiveTest.java
+++ b/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));