Browse Source

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

Evan Huus 10 years ago
parent
commit
9b13487636
1 changed files with 3 additions and 1 deletions
  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