increase post-restart sleep to 15s for pipeline health check

Pipeline takes ~15s to initialize all 7 stages. The 5s sleep was causing
the health check to fail on every deploy, preventing stamp updates.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
m3taversal 2026-04-14 16:58:27 +01:00
parent a49d551e11
commit 6df8969e61

View file

@ -96,7 +96,7 @@ fi
if [ -n "$RESTART" ]; then if [ -n "$RESTART" ]; then
log "Restarting:$RESTART" log "Restarting:$RESTART"
sudo systemctl restart $RESTART sudo systemctl restart $RESTART
sleep 5 sleep 15
FAIL=0 FAIL=0
for svc in $RESTART; do for svc in $RESTART; do