Skip to content

Commit

Permalink
Refresh generated code in opentelemetry-stackdriver (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiadliel authored Aug 28, 2024
1 parent 6655787 commit d7d9af5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions opentelemetry-stackdriver/src/proto/devtools/cloudtrace/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -518,8 +518,8 @@ pub mod trace_service_client {
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Expand All @@ -543,7 +543,7 @@ pub mod trace_service_client {
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
Into<StdError> + std::marker::Send + std::marker::Sync,
{
TraceServiceClient::new(InterceptedService::new(inner, interceptor))
}
Expand Down
6 changes: 3 additions & 3 deletions opentelemetry-stackdriver/src/proto/logging/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@ pub mod logging_service_v2_client {
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Expand All @@ -679,7 +679,7 @@ pub mod logging_service_v2_client {
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
Into<StdError> + std::marker::Send + std::marker::Sync,
{
LoggingServiceV2Client::new(InterceptedService::new(inner, interceptor))
}
Expand Down

0 comments on commit d7d9af5

Please sign in to comment.