mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
12 lines
242 B
Go
12 lines
242 B
Go
|
package sts
|
||
|
|
||
|
import "github.com/aws/aws-sdk-go/aws/request"
|
||
|
|
||
|
func init() {
|
||
|
initRequest = customizeRequest
|
||
|
}
|
||
|
|
||
|
func customizeRequest(r *request.Request) {
|
||
|
r.RetryErrorCodes = append(r.RetryErrorCodes, ErrCodeIDPCommunicationErrorException)
|
||
|
}
|