mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
5774d790a5
Signed-off-by: Micah Hausler <mhausler@amazon.com>
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)
|
|
}
|