aws: Update to aws 0.48/0.18

This commit is contained in:
Sebastian Dröge 2022-09-21 11:01:49 +03:00
parent 4928a2badf
commit 6a10728d94
4 changed files with 10 additions and 10 deletions

View file

@ -15,13 +15,13 @@ bytes = "1.0"
futures = "0.3"
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
aws-config = "0.48.0"
aws-sdk-s3 = "0.18.0"
aws-sdk-transcribe = "0.18.0"
aws-types = "0.48.0"
aws-sig-auth = "0.48.0"
aws-smithy-http = { version = "0.48.0", features = [ "rt-tokio" ] }
aws-smithy-types = "0.48.0"
aws-config = "0.49.0"
aws-sdk-s3 = "0.19.0"
aws-sdk-transcribe = "0.19.0"
aws-types = "0.49.0"
aws-sig-auth = "0.49.0"
aws-smithy-http = { version = "0.49.0", features = [ "rt-tokio" ] }
aws-smithy-types = "0.49.0"
http = "0.2.7"
chrono = "0.4"
url = "2"

View file

@ -368,7 +368,7 @@ fn s3client_from_settings(element: &super::S3HlsSink) -> Client {
let config_builder = config::Builder::from(sdk_config)
.region(settings.s3_region.clone())
.retry_config(RetryConfig::new().with_max_attempts(settings.retry_attempts));
.retry_config(RetryConfig::standard().with_max_attempts(settings.retry_attempts));
let config = if let Some(uri) = endpoint_uri {
config_builder

View file

@ -514,7 +514,7 @@ impl S3Sink {
};
let config_builder = config::Builder::from(&sdk_config)
.retry_config(RetryConfig::new().with_max_attempts(settings.retry_attempts));
.retry_config(RetryConfig::standard().with_max_attempts(settings.retry_attempts));
let config = if let Some(uri) = endpoint_uri {
config_builder

View file

@ -144,7 +144,7 @@ impl S3Src {
};
let config_builder = config::Builder::from(&sdk_config)
.retry_config(RetryConfig::new().with_max_attempts(settings.retry_attempts));
.retry_config(RetryConfig::standard().with_max_attempts(settings.retry_attempts));
let config = if let Some(uri) = endpoint_uri {
config_builder