From 8a70316f46fc103102052c5847e0ad7d836f2c08 Mon Sep 17 00:00:00 2001 From: Mark Robert Miller Date: Fri, 3 Feb 2012 04:23:48 +0000 Subject: [PATCH] move where the wait is in this script git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1239997 13f79535-47bb-0310-9956-ffa450edef68 --- solr/cloud-dev/example3.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/solr/cloud-dev/example3.sh b/solr/cloud-dev/example3.sh index 0d5ede7e059..779252265e5 100644 --- a/solr/cloud-dev/example3.sh +++ b/solr/cloud-dev/example3.sh @@ -21,13 +21,14 @@ cp -r -f example example4 cd example java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_confdir=solr/conf -DzkHost=localhost:9983,localhost:14574,localhost:14585 -jar start.jar 1>example.log 2>&1 & -sleep 10 - cd ../example2 java -Djetty.port=13574 -DzkRun -DzkHost=localhost:9983,localhost:14574,localhost:14575 -DnumShards=2 -DSTOP.PORT=6574 -DSTOP.KEY=key -jar start.jar 1>example2.log 2>&1 & cd ../example3 java -Djetty.port=13585 -DzkRun -DzkHost=localhost:9983,localhost:14574,localhost:14585 -DnumShards=2 -DSTOP.PORT=6575 -DSTOP.KEY=key -jar start.jar 1>example3.log 2>&1 & +# wait for config to go up +sleep 10 + cd ../example4 java -Djetty.port=13596 -DzkHost=localhost:9983,localhost:14574,localhost:14585 -DnumShards=2 -DSTOP.PORT=6576 -DSTOP.KEY=key -jar start.jar 1>example4.log 2>&1 &