We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eecb515 commit f929b4aCopy full SHA for f929b4a
.github/workflows/deployment-tests.yml
@@ -137,10 +137,10 @@ jobs:
137
# If LDEV-5478 exists, this will fail because onStart() hasn't completed
138
echo "Making immediate request (no delay)..."
139
140
- # Try up to 30 times with 1 second between attempts
+ # Try up to 60 times with 1 second between attempts
141
# The first few will fail due to Tomcat not being ready yet
142
# But once Tomcat IS ready, if the extension isn't, that's the bug!
143
- for i in {1..30}; do
+ for i in {1..60}; do
144
echo "Attempt $i..."
145
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")
146
echo "HTTP Code: $HTTP_CODE"
0 commit comments