-
Notifications
You must be signed in to change notification settings - Fork 266
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
feat(cargo-shuttle): use stderr, better error #1985
Conversation
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.
PR Summary
This PR improves error handling and output stream management in the Shuttle CLI by directing warnings and status messages to stderr while keeping actual command output on stdout.
- Optimized
workspace_path
inProjectArgs
to return both path and metadata, eliminating redundant metadata fetches - Improved error messaging for missing Rust projects with clearer context in
args.rs
- Consolidated API URL validation logic within API client initialization block in
lib.rs
- Fixed project rename output formatting and deployments list pagination handling
5 file(s) reviewed, 2 comment(s)
Edit PR Review Bot Settings | Greptile
This reverts commit 3166a7f.
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.
PR Summary
(updates since last review)
This PR continues to improve error handling and output management in the Shuttle CLI, with these key changes:
- Fixed typo in URL scheme error message in
init.rs
from "of" to "or", providing clearer guidance when unsupported URL schemes are encountered - Simplified
workspace_path()
method inProjectArgs
to return only the path instead of a tuple with metadata, making the API cleaner - Updated workspace path handling across
config.rs
to align with the simplifiedworkspace_path()
return type - Removed tuple destructuring in config methods to match the new workspace path resolution approach
The changes focus on making error messages more user-friendly and simplifying the internal API for workspace path handling, though introducing a potential performance consideration with separate metadata calls.
4 file(s) reviewed, 2 comment(s)
Edit PR Review Bot Settings | Greptile
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.
PR Summary
(updates since last review)
This PR adds a clarifying comment in args.rs
about the necessity of a second cargo metadata call in the workspace root, with the following key change:
- Added documentation in
ProjectArgs::project_name()
explaining why a second metadata call is needed when run from a workspace member vs root
The comment helps future maintainers understand why an apparently redundant metadata call is actually necessary for correct workspace handling.
1 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings | Greptile
(breaking): moved outputs from stdin to stderr