From 3a38a32a024ad7349735988b2e63c839cc64bf63 Mon Sep 17 00:00:00 2001 From: tottoto Date: Wed, 22 Feb 2023 02:03:42 +0900 Subject: [PATCH] chore(tonic): Use BoxBody type alias (#1284) Co-authored-by: Lucio Franco --- tonic/src/client/grpc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tonic/src/client/grpc.rs b/tonic/src/client/grpc.rs index 70b7f07..6a616e8 100644 --- a/tonic/src/client/grpc.rs +++ b/tonic/src/client/grpc.rs @@ -370,9 +370,9 @@ impl Grpc { impl GrpcConfig { fn prepare_request( &self, - request: Request>, + request: Request, path: PathAndQuery, - ) -> http::Request> { + ) -> http::Request { let scheme = self.origin.scheme().cloned(); let authority = self.origin.authority().cloned();