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 5e9cdac commit 1ee3382Copy full SHA for 1ee3382
1 file changed
.github/workflows/ci.yml
@@ -194,6 +194,11 @@ jobs:
194
HEALTHCHECK_SECRET=testing123
195
TZ=UTC
196
RADIUS_ALLOW_PRIVATE_NETWORKS=true
197
+ ACCT_REDIS_ENABLED=false
198
+ REDIS_HOST=redis
199
+ REDIS_PORT=6379
200
+ REDIS_PASSWORD=
201
+ REDIS_DB=0
202
EOF
203
# Strip leading whitespace from .env
204
sed -i 's/^[[:space:]]*//' .env
@@ -209,7 +214,7 @@ jobs:
209
214
HEALTHY=$(docker compose ps --format json | grep -c '"healthy"' || true)
210
215
TOTAL=$(docker compose ps --format json | wc -l | tr -d ' ')
211
216
echo " Healthy: $HEALTHY / $TOTAL ($i/90)"
212
- if [ "$HEALTHY" -ge 2 ] 2>/dev/null; then
217
+ if [ "$HEALTHY" -ge 3 ] 2>/dev/null; then
213
218
echo "All services are healthy!"
219
break
220
fi
0 commit comments