From 4671922fc579856ecb2df2622ba212e9d8ef442e Mon Sep 17 00:00:00 2001 From: Zelda Hessler Date: Fri, 9 Sep 2022 13:25:45 -0500 Subject: [PATCH] remove: outdated TODO regarding endpoint errors (#1721) --- aws/rust-runtime/aws-types/src/endpoint.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/aws/rust-runtime/aws-types/src/endpoint.rs b/aws/rust-runtime/aws-types/src/endpoint.rs index b0ce34a11d..2b0998e0e7 100644 --- a/aws/rust-runtime/aws-types/src/endpoint.rs +++ b/aws/rust-runtime/aws-types/src/endpoint.rs @@ -81,7 +81,6 @@ pub type BoxError = Box; /// Each AWS service generates their own implementation of `ResolveAwsEndpoint`. pub trait ResolveAwsEndpoint: Send + Sync + Debug { /// Resolves the AWS endpoint for a given region. - // TODO(https://github.com/awslabs/smithy-rs/issues/866): Create `ResolveEndpointError` fn resolve_endpoint(&self, region: &Region) -> Result; }