* Fix for the test-data command.

* Sleep and warn about needing local mode enabled.

* Improved server start synchro.
Этот коммит содержится в:
Martin Kraft
2021-08-23 09:45:07 -04:00
коммит произвёл GitHub
родитель ddaa07e35f
Коммит 77dc29308f
2 изменённых файлов: 29 добавлений и 3 удалений

20
scripts/wait-for-system-start.sh Исполняемый файл
Просмотреть файл

@@ -0,0 +1,20 @@
#!/bin/bash
total=0
max_wait_seconds=60
echo "waiting $max_wait_seconds seconds for the server to start"
while [[ "$total" -le "$max_wait_seconds" ]]; do
if bin/mmctl system status --local 2> /dev/null; then
exit 0
else
((total=total+1))
printf "."
sleep 1
fi
done
printf "\nserver didn't start in $max_wait_seconds seconds\n"
exit 1