Merge pull request #1898 from ceph/restart-mon

defaults: restart docker daemon higher delay
pull/1914/head
Sébastien Han 2017-09-15 06:23:51 -06:00 committed by GitHub
commit 68a1390dc9
3 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ COUNT=10
# Wait and ensure the socket exists after restarting the daemon
while [ $COUNT -ne 0 ]; do
{{ docker_exec_cmd }} test -S $SOCKET && check_quorum
sleep 1
sleep $DELAY
let COUNT=COUNT-1
done
# If we reach this point, it means the socket is not present.

View File

@ -39,7 +39,7 @@ get_docker_id_from_dev_name() {
while [ $count -ne 0 ]; do
id=$(docker ps -q -f "name=$1")
test "$id" != "" && break
sleep 1
sleep $DELAY
let count=count-1
done
echo "$id"
@ -69,7 +69,7 @@ for unit in $(systemctl list-units | grep "loaded active" | grep -oE "ceph-osd@(
SOCKET=/var/run/ceph/{{ cluster }}-osd.${osd_id}.asok
while [ $COUNT -ne 0 ]; do
$docker_exec test -S "$SOCKET" && check_pgs && continue 2
sleep 1
sleep $DELAY
let COUNT=COUNT-1
done
# If we reach this point, it means the socket is not present.

View File

@ -58,7 +58,7 @@ COUNT=10
# Wait and ensure the socket exists after restarting the daemon
while [ $COUNT -ne 0 ]; do
{{ docker_exec_cmd }} test -S $SOCKET && check_rest
sleep 1
sleep $DELAY
let COUNT=COUNT-1
done
echo "Socket file ${SOCKET} could not be found, which means Rados Gateway is not running."