Skip to content

Commit f504f12

Browse files
committed
increase timeout
1 parent 134d645 commit f504f12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ jobs:
106106
- name: Wait for Zulip dev server to become ready
107107
run: |
108108
echo "Waiting for Zulip server at ${ZULIP_TEST_SITE}"
109-
for attempt in {1..64}; do
109+
for attempt in {1..60}; do
110110
if curl --get --silent --show-error --fail "${ZULIP_TEST_SITE}/api/v1/server_settings" >/dev/null; then
111111
echo "Zulip is up"
112112
exit 0
113113
fi
114114
echo "Attempt ${attempt}: Zulip not ready yet"
115-
sleep 10
115+
sleep 25
116116
done
117117
echo "Zulip server failed to start" >&2
118118
exit 1

0 commit comments

Comments
 (0)