fix: verify-server.sh exit on first check, bump flower/beat to 256m
Some checks failed
CI / ruff (push) Successful in 10s
CI / dependency-scanning (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / deploy (push) Has been cancelled
CI / validate (push) Has been cancelled
CI / pytest (push) Has been cancelled

- Remove set -e so script continues through all checks
- Use POSIX arithmetic to avoid exit code 1 from (( ))
- Bump flower and celery-beat mem_limit from 128m to 256m (OOM killed)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-17 10:56:24 +01:00
parent 10fdf91dfa
commit 44568893fd
2 changed files with 6 additions and 6 deletions

View File

@@ -107,7 +107,7 @@ services:
depends_on:
redis:
condition: service_healthy
mem_limit: 128m
mem_limit: 256m
healthcheck:
disable: true
networks:
@@ -128,7 +128,7 @@ services:
depends_on:
redis:
condition: service_healthy
mem_limit: 128m
mem_limit: 256m
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:5555/ || exit 1"]
interval: 30s