diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-26T21·53+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-06-29T17·51+0000 |
commit | 10c7701ac160ad9cd7dca75ac7e8bd7262d4e531 (patch) | |
tree | d88ab5dc3fa0232e7d053c4c9f23d9a673fa57bc /tvix/castore | |
parent | 86ab052fe037715828e2856e6c700b97d7de20ca (diff) |
docs(tvix/castore): drop wrong comment r/8327
This doesnt panic anymore. Change-Id: I1987f8b0640b1e5fe33abcbf46164449c766fd0d Reviewed-on: https://cl.tvl.fyi/c/depot/+/11883 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/castore')
-rw-r--r-- | tvix/castore/src/blobservice/grpc.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tvix/castore/src/blobservice/grpc.rs b/tvix/castore/src/blobservice/grpc.rs index 834c0c7bf57a..35566f5242fd 100644 --- a/tvix/castore/src/blobservice/grpc.rs +++ b/tvix/castore/src/blobservice/grpc.rs @@ -30,7 +30,6 @@ pub struct GRPCBlobService<T> { impl<T> GRPCBlobService<T> { /// construct a [GRPCBlobService] from a [proto::blob_service_client::BlobServiceClient]. - /// panics if called outside the context of a tokio runtime. pub fn from_client(grpc_client: proto::blob_service_client::BlobServiceClient<T>) -> Self { Self { grpc_client } } |