2017-01-12 10:16:28 +00:00
|
|
|
package sts
|
|
|
|
|
|
|
|
import "github.com/aws/aws-sdk-go/aws/request"
|
|
|
|
|
|
|
|
func init() {
|
2020-03-09 07:09:54 +00:00
|
|
|
initRequest = customizeRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
func customizeRequest(r *request.Request) {
|
|
|
|
r.RetryErrorCodes = append(r.RetryErrorCodes, ErrCodeIDPCommunicationErrorException)
|
2017-01-12 10:16:28 +00:00
|
|
|
}
|