Forráskód Böngészése

Put a sleep *after* the topic creation to give the cluster more time to be healthy in CI

Evan Huus 10 éve
szülő
commit
9b13487636
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      vagrant/create_topics.sh

+ 3 - 1
vagrant/create_topics.sh

@@ -2,8 +2,10 @@
 
 set -ex
 
-sleep 12
+sleep 10
 
 cd ${KAFKA_INSTALL_ROOT}/kafka-6667
 bin/kafka-topics.sh --create --partitions 1 --replication-factor 3 --topic single_partition --zookeeper localhost:2181
 bin/kafka-topics.sh --create --partitions 2 --replication-factor 3 --topic multi_partition  --zookeeper localhost:2181
+
+sleep 5