Skip to content

Commit 204d064

Browse files
committed
Fix clippy uninlined_format_args warning
1 parent 41c3578 commit 204d064

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aws/rust-runtime/aws-runtime/src/endpoint_override.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Intercept for EndpointOverrideInterceptor {
4646
let resolver = runtime_components.endpoint_resolver();
4747

4848
// Check the resolver's debug string to see if it's StaticUriEndpointResolver
49-
let debug_str = format!("{:?}", resolver);
49+
let debug_str = format!("{resolver:?}");
5050

5151
if debug_str.contains("StaticUriEndpointResolver") {
5252
// Store in interceptor_state

aws/rust-runtime/aws-runtime/src/observability_detection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//!
88
//! This module provides an interceptor for detecting observability features in the AWS SDK:
99
//!
10-
//! - [`ObservabilityDetectionInterceptor`]: Detects observability features during
10+
//! - [`crate::observability_detection::ObservabilityDetectionInterceptor`]: Detects observability features during
1111
//! request processing and tracks them for business metrics in the User-Agent header.
1212
1313
use aws_smithy_observability_otel::meter::OtelMeterProvider;

0 commit comments

Comments
 (0)