DEV: Bump wait between Unicorn status check to to 2 seconds.
cc @codinghorror
This commit is contained in:
parent
d4ffaf8f5f
commit
ef83f9cde1
|
|
@ -244,7 +244,7 @@ class DockerManager::Upgrader
|
||||||
iterations += 1
|
iterations += 1
|
||||||
break if iterations >= 60
|
break if iterations >= 60
|
||||||
log("Waiting for Unicorn to reload#{'.' * iterations}")
|
log("Waiting for Unicorn to reload#{'.' * iterations}")
|
||||||
sleep 1
|
sleep 2
|
||||||
end
|
end
|
||||||
|
|
||||||
iterations = 0
|
iterations = 0
|
||||||
|
|
@ -252,7 +252,7 @@ class DockerManager::Upgrader
|
||||||
iterations += 1
|
iterations += 1
|
||||||
break if iterations >= 60
|
break if iterations >= 60
|
||||||
log("Waiting for Unicorn workers to start up#{'.' * iterations}")
|
log("Waiting for Unicorn workers to start up#{'.' * iterations}")
|
||||||
sleep 1
|
sleep 2
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue