diff options
author | Florian Klink <flokli@flokli.de> | 2024-03-28T21·01+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-03-28T21·17+0000 |
commit | bd32024047f4977b95ae9c04c1f7b2ad3b103a91 (patch) | |
tree | ab2f324b2a1102d0ab893bb8a6df0c46686fd1a4 /tvix/glue/src/tvix_store_io.rs | |
parent | f1e6f9807252bdeee5c33dcaf288550eaec77282 (diff) |
refactor(tvix/glue): drop register_node_in_path_info_service_sync r/7799
Replace the (single) callsite with some code interacting with the tokio runtime to block on the async version. Change-Id: I3976496ae77b2bb8734603f303655834265e3f0a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11284 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/glue/src/tvix_store_io.rs')
-rw-r--r-- | tvix/glue/src/tvix_store_io.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tvix/glue/src/tvix_store_io.rs b/tvix/glue/src/tvix_store_io.rs index e768e1475c94..dc1974527b13 100644 --- a/tvix/glue/src/tvix_store_io.rs +++ b/tvix/glue/src/tvix_store_io.rs @@ -334,18 +334,6 @@ impl TvixStoreIO { Ok(output_path) } - pub(crate) fn register_node_in_path_info_service_sync( - &self, - name: &str, - path: &Path, - root_node: Node, - ) -> io::Result<StorePath> { - self.tokio_handle.block_on(async { - self.register_node_in_path_info_service(name, path, root_node) - .await - }) - } - pub async fn store_path_exists<'a>(&'a self, store_path: StorePathRef<'a>) -> io::Result<bool> { Ok(self .path_info_service |