-
Notifications
You must be signed in to change notification settings - Fork 0
fix: harden supervisor recovery and stuck scan #207
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
Open
liobrasil
wants to merge
16
commits into
main
Choose a base branch
from
lionel/fix-supervisor-scan-recovery
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+520
−60
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8d609a4
test: tighten supervisor recovery regressions
liobrasil 8447480
fix: avoid duplicate supervisor recoveries
liobrasil 66ccb02
fix: restrict supervisor stuck scan to recurring vaults
liobrasil 88ae670
Merge origin/holyfuchs/supervisor-fix into lionel/fix-supervisor-scan…
liobrasil 9284c7e
docs: clarify scheduler registry semantics
liobrasil 999cd1d
fix: bound optimistic execution recovery window
liobrasil 5959f87
fix: bound supervisor stuck-scan pruning work
liobrasil d773f55
test: fix mixed-population supervisor regression
liobrasil 82cdec2
fix: restore manual deferred redeem claim retry
liobrasil f4c8e16
docs: align scheduler docs with scan semantics
liobrasil 6122a85
Merge branch 'holyfuchs/supervisor-fix' into lionel/fix-supervisor-sc…
liobrasil 6ef8cc8
test: align mixed-population regression comments
liobrasil 66d5eb8
fix: clarify supervisor stuck-scan mutation semantics
liobrasil 8ffc8c7
Tighten scheduler recovery grace and docs
liobrasil 28a29ae
Merge branch 'main' into lionel/fix-supervisor-scan-recovery
liobrasil 7626b37
docs: note recurring re-enable follow-up
liobrasil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| import "FlowYieldVaultsAutoBalancers" | ||
|
|
||
| /// Returns true if the yield vault/AutoBalancer has at least one active (Scheduled) transaction. | ||
| /// Used to verify that healthy yield vaults maintain their scheduling chain. | ||
| /// Returns true if the yield vault/AutoBalancer has at least one active internally-managed | ||
| /// transaction. Active includes `Scheduled`, plus a recently `Executed` transaction still | ||
| /// within the optimistic-execution grace period. | ||
| /// | ||
| /// @param yieldVaultID: The YieldVault/AutoBalancer ID | ||
| /// @return Bool: true if there's at least one Scheduled transaction, false otherwise | ||
| /// @return Bool: true if there's at least one active internally-managed transaction, false otherwise | ||
| /// | ||
| access(all) fun main(yieldVaultID: UInt64): Bool { | ||
| return FlowYieldVaultsAutoBalancers.hasActiveSchedule(id: yieldVaultID) | ||
| } | ||
|
|
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.