From bd32024047f4977b95ae9c04c1f7b2ad3b103a91 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 28 Mar 2024 22:01:56 +0100 Subject: refactor(tvix/glue): drop register_node_in_path_info_service_sync 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 --- tvix/glue/src/tvix_store_io.rs | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'tvix/glue/src/tvix_store_io.rs') 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 { - 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 { Ok(self .path_info_service -- cgit 1.4.1