-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
chore: Improved errors for watch mode #8016
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
7 Ignored Deployments
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @NicholasLYang and the rest of your teammates on Graphite |
🟢 Turbopack Benchmark CI successful 🟢Thanks |
🟢 CI successful 🟢Thanks |
54348f9
to
b31dfdc
Compare
DaemonError::VersionMismatch(Some(status.message().to_owned())) | ||
Code::FailedPrecondition => DaemonError::VersionMismatch(status.message().to_owned()), | ||
Code::Unimplemented => { | ||
DaemonError::VersionMismatch("rpc not implemented on daemon".to_string()) |
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.
does rpc need to be capitalized?
Description
Some of our error messages were a little opaque for watch mode. This threads the diagnostic code through the watch mode errors and adds some help text.
Testing Instructions
Closes TURBO-2856