mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-17 14:10:31 +01:00
002c028f22
vmctl: support of the remote read protocol Signed-off-by: hagen1778 <roman@victoriametrics.com> Co-authored-by: hagen1778 <roman@victoriametrics.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)
|
|
}
|