about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/glue/src/tvix_store_io.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/glue/src/tvix_store_io.rs b/tvix/glue/src/tvix_store_io.rs
index 3f462df3dc..3cd59d559a 100644
--- a/tvix/glue/src/tvix_store_io.rs
+++ b/tvix/glue/src/tvix_store_io.rs
@@ -273,7 +273,7 @@ impl EvalIO for TvixStoreIO {
             import_path_with_pathinfo(blob_service, directory_service, path_info_service, &p).await
         });
 
-        let path_info = self.tokio_handle.block_on(task).unwrap()?;
+        let path_info = self.tokio_handle.block_on(task)??;
 
         // from the [PathInfo], extract the store path (as string).
         Ok({