File tree Expand file tree Collapse file tree
internal/sidekick/rust/templates/crate/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,14 +75,12 @@ where T: super::stub::{{Codec.Name}} + std::fmt::Debug + Send + Sync {
7575 options: crate::RequestOptions,
7676 ) -> Result<crate::Response <{ { Codec.ReturnType} } >> {
7777 {{#Codec.DetailedTracingAttributes} }
78- {
79- let (_span, pending) = gaxi::client_request_signals! (
80- metric: self.duration.clone(),
81- info: *info::INSTRUMENTATION_CLIENT_INFO,
82- method: " client::{{Codec.ServiceNameToPascal}}::{{Codec.Name}}" ,
83- self.inner.{{Codec.Name} }(req, options));
84- pending.await
85- }
78+ let (_span, pending) = gaxi::client_request_signals!(
79+ metric: self.duration.clone(),
80+ info: *info::INSTRUMENTATION_CLIENT_INFO,
81+ method: "client::{ {Codec.ServiceNameToPascal} }::{ {Codec.Name} }",
82+ self.inner.{ {Codec.Name} }(req, options));
83+ pending.await
8684 { {/Codec.DetailedTracingAttributes} }
8785 { {^Codec.DetailedTracingAttributes} }
8886 self.inner.{ {Codec.Name} }(req, options).await
You can’t perform that action at this time.
0 commit comments