Skip to content

Commit

Permalink
tweak(aws): opt into 2024 behaviour (stalled stream protection for up…
Browse files Browse the repository at this point in the history
…loads)
  • Loading branch information
passcod committed May 18, 2024
1 parent 7d878ea commit 55853a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bestool/src/aws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl AwsArgs {
/// Get AWS config from the environment, or credentials files, or ambient, etc.
pub async fn init(args: &AwsArgs) -> SdkConfig {
let mut config = ConfigLoader::default()
.behavior_version(BehaviorVersion::v2023_11_09())
.behavior_version(BehaviorVersion::v2024_03_28())
.app_name(AppName::new(crate::APP_NAME).unwrap());

if let (Some(key_id), Some(secret)) = (args.aws_access_key_id(), args.aws_secret_access_key()) {
Expand Down

0 comments on commit 55853a0

Please sign in to comment.