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