We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current /health endpoint is used for both liveness and readiness probes, which is not following best practices. This task involves:
/health
/live
200
/ready
The text was updated successfully, but these errors were encountered:
alainncls
Successfully merging a pull request may close this issue.
Description:
The current
/health
endpoint is used for both liveness and readiness probes, which is not following best practices. This task involves:/live
endpoint that always returns a200
status for the liveness probe./health
endpoint to focus exclusively on readiness checks, ensuring it validates dependencies (e.g., Infura)./health
endpoint to/ready
/live
for liveness and/health
for readiness.Acceptance Criteria:
/live
endpoint is created, always returning200
./ready
endpoint performs only readiness checks and reflects dependency states./live
for liveness probes./ready
for readiness probes.The text was updated successfully, but these errors were encountered: