Skip to content

Commit

Permalink
Update ChangeLog for STS change & fix dvr validate method
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh committed Nov 16, 2023
1 parent b4ebfee commit bda5699
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.next.toml
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,9 @@ message = "imds::client::Builder::endpoint has been updated to accept a string i
references = ["smithy-rs#3205"]
meta = { "breaking" = true, "tada" = false, "bug" = false }
author = "rcoh"

[[aws-sdk-rust]]
message = "The `AssumeRoleBuilder::policy_arns` now accepts strings instead of an STS specific type"
references = ["smithy-rs#3205"]
meta = { "breaking" = true, "tada" = false, "bug" = false }
author = "rcoh"
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ impl ReplayingClient {

/// Validate all headers and bodies
pub async fn full_validate(self, media_type: &str) -> Result<(), Box<dyn Error>> {
self.validate_body_and_headers(None, MediaType::from(media_type))
.await
self.validate_body_and_headers(None, media_type).await
}

/// Validate actual requests against expected requests
Expand Down

0 comments on commit bda5699

Please sign in to comment.