docs(tvix/castore): drop wrong comment

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>
This commit is contained in:
Florian Klink 2024-06-27 00:53:37 +03:00 committed by flokli
parent 86ab052fe0
commit 10c7701ac1

View file

@ -30,7 +30,6 @@ pub struct GRPCBlobService<T> {
impl<T> GRPCBlobService<T> { impl<T> GRPCBlobService<T> {
/// construct a [GRPCBlobService] from a [proto::blob_service_client::BlobServiceClient]. /// 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 { pub fn from_client(grpc_client: proto::blob_service_client::BlobServiceClient<T>) -> Self {
Self { grpc_client } Self { grpc_client }
} }