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.
New issue
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
Failure detector / Failsafe (Parachute) triggering #10179
Failure detector / Failsafe (Parachute) triggering #10179
Changes from all commits
a8fba74
32bdd22
54f5927
bbe552e
e05fdb3
a439c35
5e50745
e34802a
6582bda
cf342a7
c152a7a
bf809a8
0488d7b
4bbb2de
a07670e
1170f8c
8f3574f
9942d87
a41bb72
c91f7de
f1c4151
246ab89
1405a0e
42a8a8e
87a1686
182568f
cf2cd0b
7b3cf8c
c99ba1c
7eecd70
ff85321
c850c75
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Next time try to make a separate commit for formatting only.
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.
Wow so many negations 😄, let me try wrap my head around this:
So if the circuit breaker is enabled which is the default then the variable
circuit_breaker_flight_termination_disabled
istrue
meaning the flight termination is "disabled", so nothing is happening. Now if the circuit breaker is disabled (set to 0), the flight termination is "enabled", so "no disabled", and therefore this block is called.I think that's correct.