debug should retry

This commit is contained in:
Adrien Delorme 2019-01-24 14:02:10 +01:00
parent 297abc3e84
commit c943ff00a2
1 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"fmt"
"io"
"log"
"net/http"
"net/url"
"reflect"
@ -565,7 +566,10 @@ type temporary interface {
Temporary() bool
}
func shouldRetryCancel(err error) bool {
func shouldRetryCancel(err error) (shouldRetry bool) {
defer func() {
log.Printf("shouldRetry returned %t with %#v", shouldRetry, err)
}()
switch err := err.(type) {
case awserr.Error:
if err.Code() == CanceledErrorCode {