From 30e0c320666f8ecaf37f6d966e45c40f988cce78 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 13 Nov 2023 14:32:24 +0200 Subject: refactor(tvix/castore/tonic): make async, support wait-connect=? This moves the sync `channel::from_url` to a async `tonic::channel_from_url`. It now allows connecting non-lazily if `wait- connect=1` is set in the URL params. Also, make the pingpong tests for blobsvc and directorysvc use the wait- connect=1 codepath. Change-Id: Ibeea33117c8121814627e7f6aba0e943ae2e92ca Reviewed-on: https://cl.tvl.fyi/c/depot/+/10030 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster --- tvix/castore/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/castore/src/lib.rs') diff --git a/tvix/castore/src/lib.rs b/tvix/castore/src/lib.rs index 5a031aec7686..8d3dc7b4c4a5 100644 --- a/tvix/castore/src/lib.rs +++ b/tvix/castore/src/lib.rs @@ -2,11 +2,11 @@ mod digests; mod errors; pub mod blobservice; -pub mod channel; pub mod directoryservice; pub mod fixtures; pub mod import; pub mod proto; +pub mod tonic; pub mod utils; pub use digests::{B3Digest, B3_LEN}; -- cgit 1.4.1