-
Notifications
You must be signed in to change notification settings - Fork 90
refactor: replace grpc queue info with polling #2068
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
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
Large diffs are not rendered by default.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
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.
🧩 Analysis chain
Validate
kameo = "0.19"against your Tokio version and MSRVkameo 0.19.xpulls intokiowith a^1.47requirement andserde 1.0, so this dependency line is reasonable, but you should confirm that:^1.47, andOnce you’re happy with it in CI, consider pinning to a specific patch (e.g.
0.19.2) for reproducibility.I need to verify the assumptions in the review comment. Let me examine the workspace configuration and check kameo's actual requirements.
🏁 Script executed:
Length of output: 2835
🏁 Script executed:
Length of output: 121
🏁 Script executed:
Length of output: 1695
🌐 Web query:
💡 Result:
I couldn't find an explicit, published MSRV for kameo v0.19. The project does declare a rust-version (MSRV) in its Cargo.toml files (per the changelog) and is built on Tokio (kameo is an async actor library using Tokio). If you want the exact MSRV and tokio-min-version for v0.19 I can fetch the Cargo.toml from the v0.19 tag (or the crate on crates.io) and report the exact rust-version and tokio dependency version — tell me which (GitHub tag or crates.io) you'd prefer. Sources: [kameo project listing/docs]. [1][2]
Sources
[1] Kameo crate listing/docs (lib.rs / docs.rs).
[2] Kameo changelog summary (notes that Cargo.toml contains rust-version / MSRV and that Kameo is built on Tokio).
I need to fetch kameo's actual Cargo.toml metadata to validate the review's claims about tokio requirements and MSRV.
🏁 Script executed:
Length of output: 992
Declare MSRV or verify Rust 1.88.0 compatibility for kameo 0.19
kameo 0.19.0 requires
rust-version = "1.88.0", but forester doesn't declare a minimum supported Rust version. You should either:rust-version = "1.88.0"to forester/Cargo.toml to match kameo's MSRV, orAdditionally, tighten the Tokio constraint from
version = "1"to"1.47"at line 41 for clarity (kameo transitively requires it). Consider pinning kameo to a specific patch (e.g.,"0.19.2") once you confirm CI stability.🤖 Prompt for AI Agents