-
Notifications
You must be signed in to change notification settings - Fork 15
fix(select,deps,delegation): follow-up fixes stranded past #129's merge #130
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
cfe4e26
chore(deps): pin base64 to 0.22 to avoid a duplicate dependency
senamakel a252ec0
chore: files changed Cargo.lock
senamakel 4d3fb92
fix(select): separate send resource nouns from action verbs
senamakel e46f546
chore: files changed src/harness/tool/select/test.rs
senamakel 5ce61c2
chore: files changed src/graph/delegation/run.rs
senamakel 2901e24
feat(delegation): add test for schema-mismatched checkpoint rejection…
senamakel 778f90c
test(delegation): add concurrency test for resume_delegation serializ…
senamakel cc43d8d
feat(delegation): add cancellation check before approval node
senamakel 85f16ee
test(delegation): add test for cancellation at approval node routing …
senamakel 15f93ed
chore: files changed src/graph/checkpoint/mod.rs
senamakel aa80d52
test(delegation): add test ensuring only record context gets schema tag
senamakel 6bade4b
feat(dag): document silent edge drop for duplicate node ids
senamakel b726a58
fix(dag): clarify duplicate-id behaviour in has_cycle docs
senamakel 7575dbe
fix(select): restore Send verb detection for noun-only matches
senamakel f5af08c
chore: files changed src/harness/tool/select/mod.rs
senamakel a578da8
chore: files changed src/graph/delegation/test.rs
senamakel 0a0368b
chore: files changed src/graph/delegation/run.rs
senamakel a10c9ce
chore: files changed src/graph/delegation/run.rs
senamakel a7a5619
chore: files changed src/harness/tool/select/test.rs
senamakel 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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.
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.
When the checkpointer contains multiple namespaces for this thread,
getreturns the latest checkpoint across the entire thread, whileresume_graphultimately callsCompiledGraph::resume, which loads the latest checkpoint scoped to the graph's root namespace. A newer subgraph checkpoint can therefore cause this guard either to reject a compatible root approval or to validate the wrong schema version and then apply the decision to an incompatible root checkpoint. Useget_scoped(thread_id.as_str(), None, &[])here so the validation and resume target the same record.Useful? React with 👍 / 👎.