remove: outdated TODO regarding endpoint errors (#1721)

This commit is contained in:
Zelda Hessler 2022-09-09 13:25:45 -05:00 committed by GitHub
parent 1a0f81ae33
commit 4671922fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -81,7 +81,6 @@ pub type BoxError = Box<dyn Error + Send + Sync + 'static>;
/// 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<AwsEndpoint, BoxError>;
}