Skip to content

Commit

Permalink
update aws-sdks (#5257)
Browse files Browse the repository at this point in the history
* update aws-sdks

* readd assert
  • Loading branch information
PSeitz authored Jul 26, 2024
1 parent c642618 commit ded426c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
57 changes: 29 additions & 28 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -275,15 +275,14 @@ whichlang = { git = "https://github.com/quickwit-oss/whichlang", rev = "fe406416
wiremock = "0.5"
zstd = "0.13.0"

aws-config = "1.2"
aws-config = "1.5.4"
aws-credential-types = { version = "1.2", features = ["hardcoded-credentials"] }
aws-sdk-kinesis = "1.21"
# updating aws-sdk-s3 breaks test_s3_compatible_storage_bulk_delete_multi
aws-sdk-s3 = "=1.25"
aws-sdk-kinesis = "1.36"
aws-sdk-s3 = "1.42"
aws-smithy-async = "1.2"
aws-smithy-runtime = "1.5"
aws-smithy-runtime = "1.6.2"
aws-smithy-types = { version = "1.2", features = ["byte-stream-poll-next"] }
aws-types = "1.3"
aws-types = "1.3.3"

azure_core = { version = "0.13.0", features = ["enable_reqwest_rustls"] }
azure_storage = { version = "0.13.0", default-features = false, features = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ mod tests {

let requests = client.actual_requests().collect::<Vec<_>>();
assert_eq!(requests.len(), 1);
assert!(requests[0].uri().to_string().ends_with("DeleteObjects"));
assert!(requests[0].uri().to_string().ends_with("delete"));
}

#[tokio::test]
Expand Down

0 comments on commit ded426c

Please sign in to comment.