Skip to content

Commit f929b4a

Browse files
committed
Increase timeout to 60s for cold startup
1 parent eecb515 commit f929b4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ jobs:
137137
# If LDEV-5478 exists, this will fail because onStart() hasn't completed
138138
echo "Making immediate request (no delay)..."
139139
140-
# Try up to 30 times with 1 second between attempts
140+
# Try up to 60 times with 1 second between attempts
141141
# The first few will fail due to Tomcat not being ready yet
142142
# But once Tomcat IS ready, if the extension isn't, that's the bug!
143-
for i in {1..30}; do
143+
for i in {1..60}; do
144144
echo "Attempt $i..."
145145
HTTP_CODE=$(curl -s -o /tmp/response.txt -w "%{http_code}" http://127.0.0.1:8888/test-slow-startup.cfm 2>/dev/null || echo "000")
146146
echo "HTTP Code: $HTTP_CODE"

0 commit comments

Comments
 (0)