You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/06/23 08:51:15 UTC

[incubator-hop] branch master updated: HOP-2999: increase timeouts on container creation

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new eeecf1f  HOP-2999: increase timeouts on container creation
     new 6ec0e7a  Merge pull request #895 from hansva/master
eeecf1f is described below

commit eeecf1f95760f45c88e9d780ac8c5ed260d0956d
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Jun 23 10:48:22 2021 +0200

    HOP-2999: increase timeouts on container creation
---
 docker/integration-tests/integration-tests-cassandra.yaml | 7 ++++---
 docker/integration-tests/integration-tests-database.yaml  | 7 ++++---
 docker/integration-tests/integration-tests-mongo.yaml     | 5 +++--
 docker/integration-tests/integration-tests-neo4j.yaml     | 5 +++--
 4 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/docker/integration-tests/integration-tests-cassandra.yaml b/docker/integration-tests/integration-tests-cassandra.yaml
index c0bbdcd..768fa14 100644
--- a/docker/integration-tests/integration-tests-cassandra.yaml
+++ b/docker/integration-tests/integration-tests-cassandra.yaml
@@ -34,6 +34,7 @@ services:
       - "9160"
     healthcheck:
       test: [ "CMD-SHELL", "[ $$(nodetool statusgossip) = running ]" ]
-      interval: 10s
-      timeout: 5s
-      retries: 50
\ No newline at end of file
+      interval: 20s
+      timeout: 10s
+      retries: 6
+      start_period: 120s
\ No newline at end of file
diff --git a/docker/integration-tests/integration-tests-database.yaml b/docker/integration-tests/integration-tests-database.yaml
index 8aeb151..2aa1f4e 100644
--- a/docker/integration-tests/integration-tests-database.yaml
+++ b/docker/integration-tests/integration-tests-database.yaml
@@ -35,6 +35,7 @@ services:
       - "5432"
     healthcheck:
       test: [ "CMD-SHELL", "pg_isready -U postgres" ]
-      interval: 10s
-      timeout: 5s
-      retries: 5
\ No newline at end of file
+      interval: 20s
+      timeout: 10s
+      retries: 6
+      start_period: 120s
\ No newline at end of file
diff --git a/docker/integration-tests/integration-tests-mongo.yaml b/docker/integration-tests/integration-tests-mongo.yaml
index c77937d..2db3a8f 100644
--- a/docker/integration-tests/integration-tests-mongo.yaml
+++ b/docker/integration-tests/integration-tests-mongo.yaml
@@ -33,6 +33,7 @@ services:
       - "27017"
     healthcheck:
       test: echo 'db.runCommand("ping").ok' | mongo 127.0.0.1:27017/test --quiet
-      interval: 10s
+      interval: 20s
       timeout: 10s
-      retries: 5
\ No newline at end of file
+      retries: 6
+      start_period: 120s      
\ No newline at end of file
diff --git a/docker/integration-tests/integration-tests-neo4j.yaml b/docker/integration-tests/integration-tests-neo4j.yaml
index e434362..64b7b3f 100644
--- a/docker/integration-tests/integration-tests-neo4j.yaml
+++ b/docker/integration-tests/integration-tests-neo4j.yaml
@@ -36,6 +36,7 @@ services:
       - NEO4J_AUTH=neo4j/abcd
     healthcheck:
       test: perl -MIO::Socket::INET -e 'exit(! defined( IO::Socket::INET->new("localhost:7687")))'
-      interval: 10s
+      interval: 20s
       timeout: 10s
-      retries: 5
\ No newline at end of file
+      retries: 6
+      start_period: 120s
\ No newline at end of file