fix(selfhost): retry the /ready probe in selfhost-post-update-check.sh instead of a single attempt - #5086
Merged
Merged
Conversation
…h instead of a single attempt (#5085) docker compose up -d returns as soon as the container starts, well before the app inside has finished booting and bound its port, so a single immediate curl reliably false-failed on a completely normal deploy -- hit twice today. The gittensory service's own Docker healthcheck already documents and tolerates this (start_period: 60s, "tolerates the Postgres cold start"); the post-update script had no equivalent tolerance. Retries up to 90s by default (configurable via SELFHOST_READY_RETRIES/SELFHOST_READY_RETRY_DELAY_SECONDS), verified against a local mock server that fails twice before succeeding, and against one that never succeeds (exhausts and exits non-zero).
Contributor
|
Superagent didn't find any vulnerabilities or security issues in this PR. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5086 +/- ##
=======================================
Coverage 94.20% 94.20%
=======================================
Files 470 470
Lines 39722 39722
Branches 14493 14493
=======================================
Hits 37421 37421
Misses 1645 1645
Partials 656 656
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #5085
Scope
Validation
Safety