diff options
Diffstat (limited to 'tvix/nar-bridge/src/narinfo.rs')
-rw-r--r-- | tvix/nar-bridge/src/narinfo.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tvix/nar-bridge/src/narinfo.rs b/tvix/nar-bridge/src/narinfo.rs index a883ac88ce18..fc19bdc871cd 100644 --- a/tvix/nar-bridge/src/narinfo.rs +++ b/tvix/nar-bridge/src/narinfo.rs @@ -67,11 +67,10 @@ pub async fn get( })?; // encode the (unnamed) root node in the NAR url itself. - let root_node = tvix_castore::directoryservice::Node::try_from( - path_info.node.as_ref().expect("root node must not be none"), - ) - .unwrap() // PathInfo is validated - .rename("".into()); + let root_node = + tvix_castore::Node::try_from(path_info.node.as_ref().expect("root node must not be none")) + .unwrap() // PathInfo is validated + .rename("".into()); let mut buf = Vec::new(); Node::encode(&(&root_node).into(), &mut buf); @@ -126,7 +125,7 @@ pub async fn put( // Lookup root node with peek, as we don't want to update the LRU list. // We need to be careful to not hold the RwLock across the await point. - let maybe_root_node: Option<tvix_castore::directoryservice::Node> = root_nodes + let maybe_root_node: Option<tvix_castore::Node> = root_nodes .read() .peek(&narinfo.nar_hash) .and_then(|v| v.try_into().ok()); |