mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
* Update many modules. go get -u golang.org/x/net go get -u github.com/aws/aws-sdk-go go get -u golang.org/x/oauth2 go get -u google.golang.org/api go get -u gopkg.in/yaml.v2 go mod tidy * Update modules go get -u github.com/tiramiseb/go-gandi go get -u github.com/miekg/dns go mod tidy
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)
|
|
}
|