Loading CHANGELOG.next.toml +6 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,12 @@ references = ["smithy-rs#1457"] meta = { "breaking" = false, "tada" = true, "bug" = false } author = "calavera" [[aws-sdk-rust]] message = "Add `From<aws_smithy_client::erase::DynConnector>` impl for `aws_smithy_client::http_connector::HttpConnector`" references = ["aws-sdk-rust#581"] meta = { "breaking" = false, "tada" = true, "bug" = false } author = "Velfi" [[smithy-rs]] message = """ Updated the smithy client's retry behavior to allow for a configurable initial backoff. Previously, the initial backoff Loading rust-runtime/aws-smithy-client/src/erase.rs +7 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ pub mod boxclone; use boxclone::*; use crate::{bounds, retry, Client}; use crate::{bounds, http_connector::HttpConnector, retry, Client}; use aws_smithy_http::body::SdkBody; use aws_smithy_http::result::ConnectorError; use std::fmt; Loading Loading @@ -178,6 +178,12 @@ impl Service<http::Request<SdkBody>> for DynConnector { } } impl From<DynConnector> for HttpConnector { fn from(connector: DynConnector) -> Self { HttpConnector::Prebuilt(Some(connector)) } } /// A Smithy middleware that uses dynamic dispatch. /// /// This type allows you to pay a small runtime cost to avoid having to name the exact middleware Loading Loading
CHANGELOG.next.toml +6 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,12 @@ references = ["smithy-rs#1457"] meta = { "breaking" = false, "tada" = true, "bug" = false } author = "calavera" [[aws-sdk-rust]] message = "Add `From<aws_smithy_client::erase::DynConnector>` impl for `aws_smithy_client::http_connector::HttpConnector`" references = ["aws-sdk-rust#581"] meta = { "breaking" = false, "tada" = true, "bug" = false } author = "Velfi" [[smithy-rs]] message = """ Updated the smithy client's retry behavior to allow for a configurable initial backoff. Previously, the initial backoff Loading
rust-runtime/aws-smithy-client/src/erase.rs +7 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ pub mod boxclone; use boxclone::*; use crate::{bounds, retry, Client}; use crate::{bounds, http_connector::HttpConnector, retry, Client}; use aws_smithy_http::body::SdkBody; use aws_smithy_http::result::ConnectorError; use std::fmt; Loading Loading @@ -178,6 +178,12 @@ impl Service<http::Request<SdkBody>> for DynConnector { } } impl From<DynConnector> for HttpConnector { fn from(connector: DynConnector) -> Self { HttpConnector::Prebuilt(Some(connector)) } } /// A Smithy middleware that uses dynamic dispatch. /// /// This type allows you to pay a small runtime cost to avoid having to name the exact middleware Loading