Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh generated code in opentelemetry-stackdriver #102

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -518,8 +518,8 @@
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 @@
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
Into<StdError> + std::marker::Send + std::marker::Sync,

Check warning on line 546 in opentelemetry-stackdriver/src/proto/devtools/cloudtrace/v2.rs

View check run for this annotation

Codecov / codecov/patch

opentelemetry-stackdriver/src/proto/devtools/cloudtrace/v2.rs#L546

Added line #L546 was not covered by tests
{
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 @@
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 @@
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
Into<StdError> + std::marker::Send + std::marker::Sync,

Check warning on line 682 in opentelemetry-stackdriver/src/proto/logging/v2.rs

View check run for this annotation

Codecov / codecov/patch

opentelemetry-stackdriver/src/proto/logging/v2.rs#L682

Added line #L682 was not covered by tests
{
LoggingServiceV2Client::new(InterceptedService::new(inner, interceptor))
}
Expand Down
Loading