Просмотр исходного кода

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

Evan Huus 11 лет назад
Родитель
Сommit
9b13487636
1 измененных файлов с 3 добавлено и 1 удалено
  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