Skip to content

Commit

Permalink
[smithy-rs] Rollup of 5 commits
Browse files Browse the repository at this point in the history
Includes commits:
  e7f10319 Run `cargo update` on the runtime lockfiles and the SDK lockfile (#3856)
  119c87ca Rework addressing code review feedback in smithy-rs#3859 (#3860)
  6a3a2074 Update changelog
  9a845c08 Merge smithy-rs-release-1.x.y into main (#3861)
  796ec3ac Fix AWS SDK generation examples in  `aws/sdk` README (#3862)

Co-authored-by: AWS SDK Rust Bot <[email protected]>
Co-authored-by: AWS SDK Rust Bot <[email protected]>
Co-authored-by: ysaito1001 <[email protected]>
  • Loading branch information
3 people committed Oct 5, 2024
1 parent cc3a606 commit 55f49b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions sdk/ec2/tests/paginators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ fn stub_config(http_client: impl HttpClient + 'static) -> Config {
.build()
}

fn validate_query_string(expected: &str, actual: &str) {
let expected = expected.split('&').collect::<HashSet<&str>>();
let actual = actual.split('&').collect::<HashSet<&str>>();
fn validate_query_string(expected_str: &str, actual_str: &str) {
assert_eq!(expected_str.len(), actual_str.len());
let expected = expected_str.split('&').collect::<HashSet<_>>();
let actual = actual_str.split('&').collect::<HashSet<_>>();
assert_eq!(expected, actual);
assert_eq!(expected.len(), actual.len());
}

/// See https:/awslabs/aws-sdk-rust/issues/391
Expand Down
4 changes: 2 additions & 2 deletions versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
smithy_rs_revision = '2c0274cb7aa5e30567b6268965b034e26e16a416'
smithy_rs_revision = '796ec3acc913c8db82ad54374aa388ead9be7db5'
aws_doc_sdk_examples_revision = 'a370cb2bb182ab57f55a6086175273dc863ee9e3'

[manual_interventions]
Expand Down Expand Up @@ -755,7 +755,7 @@ model_hash = '5ec7004d46e2bb30c8d974da3846e960c6d52a00307ee4cc8a62b95566a1fc84'
[crates.aws-sdk-ec2]
category = 'AwsSdk'
version = '1.77.0'
source_hash = '46ba1facd64393f3be2aee9a7427df8d66ed688cf5afccb2a047056b93b5309e'
source_hash = 'd0c801051334c4b725e91247fafba1ab1e6769045e353ec3010778da47ed5d72'
model_hash = '989da0c7a7865d11a5d37caae0bf28843b3657c1b434bbe46caa1af68e717a3e'

[crates.aws-sdk-ec2instanceconnect]
Expand Down

0 comments on commit 55f49b6

Please sign in to comment.