diff options
author | Florian Klink <flokli@flokli.de> | 2023-01-09T14·29+0000 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-01-12T10·11+0000 |
commit | ed3b28aa02b1c20bc8d5c2c9846fb0b68ea6deca (patch) | |
tree | d8a0577e7902e20a8bcf3f8e73d08d6292e83ea5 /tvix/store/src/proto.rs | |
parent | ec470d254ffca9822cbfa3eb783a0c8f0f523f51 (diff) |
chore(tvix/store): update ValidatePathInfoError messages r/5647
Change-Id: I8f16e25d998a74ac110ae99eec0edbbfd720c8dd Reviewed-on: https://cl.tvl.fyi/c/depot/+/7800 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store/src/proto.rs')
-rw-r--r-- | tvix/store/src/proto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs index f2dfe1a86d1c..85577975985e 100644 --- a/tvix/store/src/proto.rs +++ b/tvix/store/src/proto.rs @@ -40,7 +40,7 @@ pub enum ValidatePathInfoError { NoNodePresent(), /// Invalid node name encountered. - #[error("{0} is an invalid node name: {1}")] + #[error("Failed to parse {0} as NixPath: {1}")] InvalidNodeName(String, ParseStorePathError), /// The digest the (root) node refers to has invalid length. |