Skip to content

Commit

Permalink
Increase timeout for wait-for-it scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tPl0ch committed Nov 4, 2020
1 parent 1444d43 commit 9c89e09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/wait-for-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9c89e09

Please sign in to comment.