We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3db6a78 + c44e233 commit ee21cfeCopy full SHA for ee21cfe
1 file changed
bin/e2e
@@ -180,14 +180,14 @@ trap cleanup EXIT INT TERM
180
# Wait for Rails health
181
182
echo "[e2e] Waiting for Rails to become healthy on $HEALTH_CHECK_URL"
183
-for i in {1..6}; do
+for i in {1..10}; do
184
printf "."
185
if curl -fsS "$HEALTH_CHECK_URL" > /dev/null 2>&1; then
186
printf "\n[e2e] Rails is up.\n"
187
break
188
fi
189
sleep 1
190
- if [ "$i" -eq 6 ]; then
+ if [ "$i" -eq 10 ]; then
191
printf "\n[e2e] ERROR: Rails server did not become ready in time.\n" >&2
192
echo "[e2e] Contents of /tmp/e2e-foreman.log:"
193
cat /tmp/e2e-foreman.log
0 commit comments