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:
parent
a49d551e11
commit
6df8969e61
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ fi
|
|||
if [ -n "$RESTART" ]; then
|
||||
log "Restarting:$RESTART"
|
||||
sudo systemctl restart $RESTART
|
||||
sleep 5
|
||||
sleep 15
|
||||
|
||||
FAIL=0
|
||||
for svc in $RESTART; do
|
||||
|
|
|
|||
Loading…
Reference in a new issue