Explorar el Código

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

Evan Huus hace 10 años
padre
commit
9b13487636
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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