We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c546da5 commit c3c5ac1Copy full SHA for c3c5ac1
rust-runtime/aws-smithy-observability-otel/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "aws-smithy-observability-otel"
3
-version = "0.1.2"
+version = "0.1.3"
4
authors = [
5
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
6
]
rust-runtime/aws-smithy-observability-otel/src/meter.rs
@@ -286,6 +286,10 @@ impl ProvideMeter for OtelMeterProvider {
286
fn get_meter(&self, scope: &'static str, _attributes: Option<&Attributes>) -> Meter {
287
Meter::new(Arc::new(MeterWrap(self.meter_provider.meter(scope))))
288
}
289
+
290
+ fn as_any(&self) -> &dyn std::any::Any {
291
+ self
292
+ }
293
294
295
#[cfg(test)]
0 commit comments