From 9c89e098c0e702e06fb7a2e7dc09778b3ca2725f Mon Sep 17 00:00:00 2001 From: Thomas Ploch Date: Wed, 4 Nov 2020 06:43:34 +0100 Subject: [PATCH] Increase timeout for `wait-for-it` scripts --- bin/wait-for-all.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/wait-for-all.sh b/bin/wait-for-all.sh index 3a7e013..d352aaf 100755 --- a/bin/wait-for-all.sh +++ b/bin/wait-for-all.sh @@ -4,6 +4,6 @@ ZOOKEEPER_IPV4=${ZOOKEEPER_IPV4:-localhost} KAFKA_BROKER_IPV4=${KAFKA_BROKER_IPV4:-localhost} SCHEMA_REGISTRY_IPV4=${SCHEMA_REGISTRY_IPV4:-localhost} -bin/wait-for-it.sh "${ZOOKEEPER_IPV4}:2181" -t 30 -- echo "zookeeper is up" -bin/wait-for-it.sh "${KAFKA_BROKER_IPV4}:9092" -t 30 -- echo "kafka broker is up" -bin/wait-for-it.sh "${SCHEMA_REGISTRY_IPV4}:8081" -t 30 -- echo "schema registry is up" +bin/wait-for-it.sh "${ZOOKEEPER_IPV4}:2181" -t 60 -- echo "zookeeper is up" +bin/wait-for-it.sh "${KAFKA_BROKER_IPV4}:9092" -t 60 -- echo "kafka broker is up" +bin/wait-for-it.sh "${SCHEMA_REGISTRY_IPV4}:8081" -t 60 -- echo "schema registry is up"