Skip to content

Commit 33fb06c

Browse files
committed
wait: reduce time before logging, reduce poll interval
1 parent 047ac07 commit 33fb06c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

streamr-docker-dev/bin.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ wait() {
173173
done
174174

175175
if [ ${#waiting_for_services[@]} -gt 0 ]; then
176-
if (( time_waited >= 60 )); then
176+
if (( time_waited >= 30 )); then
177177
echo "***********************************"
178178
echo "Still waiting for the following services:"
179179
for s in "${waiting_for_services[@]}"; do echo "$s"; done
180180
fi
181-
sleep 5
181+
sleep 1s
182182
time_waited=$((time_waited+5))
183183
else
184184
echo "All services up and running."

0 commit comments

Comments
 (0)