about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-01-09T14·29+0000
committerflokli <flokli@flokli.de>2023-01-12T10·11+0000
commited3b28aa02b1c20bc8d5c2c9846fb0b68ea6deca (patch)
treed8a0577e7902e20a8bcf3f8e73d08d6292e83ea5
parentec470d254ffca9822cbfa3eb783a0c8f0f523f51 (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>
-rw-r--r--tvix/store/src/proto.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs
index f2dfe1a86d..8557797598 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.