Increased healthcheck probes
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2025-07-26 14:45:55 +00:00
parent 0581e6647b
commit 701972ae03

View File

@ -32,7 +32,7 @@ steps:
# Health Check
- |
echo "Checking app health $HEALTHCHECK_URL..."
for i in {1..30}; do
for i in {1..120}; do
if curl -sf $HEALTHCHECK_URL; then
echo "Health check OK"
exit 0