This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
validator: skip health check #33568
Merged
mvines
merged 2 commits into
solana-labs:master
from
diman-io:diman/pr/skip-health-check
Oct 8, 2023
Merged
validator: skip health check #33568
mvines
merged 2 commits into
solana-labs:master
from
diman-io:diman/pr/skip-health-check
Oct 8, 2023
Conversation
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
Codecov Report
@@ Coverage Diff @@
## master #33568 +/- ##
=========================================
- Coverage 81.7% 81.7% -0.1%
=========================================
Files 807 807
Lines 218283 218287 +4
=========================================
- Hits 178485 178467 -18
- Misses 39798 39820 +22 |
mvines
reviewed
Oct 6, 2023
b7faa48
to
36045c5
Compare
mvines
approved these changes
Oct 8, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, thanks
Hi @mvines, no chance for |
v1.17 seems fine to me, it's not really a critical bug fix so i don't feel like a v1.16 backport is appropriate, even though I appreciate this is a low risk change |
mergify bot
pushed a commit
that referenced
this pull request
Oct 9, 2023
* validator: skip health check * keep `healthy` as a boolean (cherry picked from commit 7afb11f)
mvines
pushed a commit
that referenced
this pull request
Oct 13, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Problem
Issues with
getHealth
are known: #16957 And I believe that the issue will be fundamentally resolved.But right now, I'm concerned about updating the validator using
wait-for-restart-window
andexit
.There are already a lot of messages in the chats for 1.16.
I propose this tiny change that would allow bypassing the health check.
I sincerely hope for
v1.16
andv1.17
Summary of Changes
Added the
--skip-health-check
flag for thewait-for-restart-window
andexit
commandsFixes #33553