You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.1.0 of the AWS module lacks a way of setting retries for API connections. There's a known issue with some versions of AWS SDK that needs to raise the amount of retries because connections are expected to be failing.
For example if you use boto3 you can use the following code to work around known problems with AWS api:
The Changelog of version 3.130.0 of aws-sdk-php says they introduced this setting : https://github.com/aws/aws-sdk-php/releases/tag/3.130.0 By the way, it's the last version to support the old Guzzle version. So 3.130.0 is the only option to not hit #53 but still be able to set the timeout.
Version 1.1.0 of the AWS module lacks a way of setting retries for API connections. There's a known issue with some versions of AWS SDK that needs to raise the amount of retries because connections are expected to be failing.
For example if you use
boto3
you can use the following code to work around known problems with AWS api:The Changelog of version 3.130.0 of
aws-sdk-php
says they introduced this setting : https://github.com/aws/aws-sdk-php/releases/tag/3.130.0 By the way, it's the last version to support the old Guzzle version. So3.130.0
is the only option to not hit #53 but still be able to set the timeout.One customer ran some tests and suggested adding such a setting into function
initializeSdk()
in https://github.com/Icinga/icingaweb2-module-aws/blob/master/library/Aws/AwsClient.phpref/NC/724192
The text was updated successfully, but these errors were encountered: