We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112306b commit 0c9d5d6Copy full SHA for 0c9d5d6
1 file changed
crates/client/src/grpc.rs
@@ -521,6 +521,10 @@ macro_rules! proxier_impl {
521
}
522
dyn_clone::clone_trait_object!($trait_name);
523
524
+ // `allow(deprecated)`: upstream proto deprecations (e.g. cloud-api
525
+ // AddNamespaceRegion) generate calls to deprecated tonic client
526
+ // methods inside the impls; we still wire them for back-compat.
527
+ #[allow(deprecated)]
528
impl<RC> $trait_name for RC
529
where
530
RC: RawGrpcCaller + RawClientProducer + Clone + Unpin,
@@ -533,6 +537,7 @@ macro_rules! proxier_impl {
533
537
534
538
impl<T: Send + Sync + 'static> RawGrpcCaller for $client_type<T> {}
535
539
540
536
541
impl<T> $trait_name for $client_type<T>
542
543
T: GrpcService<Body> + Clone + Send + Sync + 'static,
0 commit comments