-
Notifications
You must be signed in to change notification settings - Fork 699
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
Pvf refactor execute worker errors follow up #4071
Changes from all commits
ba6c868
3930edd
6c54613
840575e
6baab23
019bd5f
9fd99c5
17202e8
2190817
6148a7c
5bdda49
a05897f
8d0e246
File filter
Filter by extension
Conversations
Jump to
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.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,6 +136,9 @@ pub enum InternalValidationError { | |
/// Could not find or open compiled artifact file. | ||
#[error("validation: could not find or open compiled artifact file: {0}")] | ||
CouldNotOpenFile(String), | ||
/// Could not create a pipe between the worker and a child process. | ||
#[error("validation: could not create pipe: {0}")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Docstring is missing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you!) Fixed 5bdda49 |
||
CouldNotCreatePipe(String), | ||
/// Host could not clear the worker cache after a job. | ||
#[error("validation: host could not clear the worker cache ({path:?}) after a job: {err}")] | ||
CouldNotClearWorkerDir { | ||
|
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.
nit, different formatter settings here and below
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.
Not sure if I've got it right, but it is the result of applying
taplo fmt polkadot/node/core/pvf/Cargo.toml --config .config/taplo.toml
as in the ci job