]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / aws / aws-sdk-go / aws / request / handlers.go
index 605a72d3c94001d8e438c9b7c66675a18917d90b..8ef8548a96d8cfb97321e841a7c26dade232b588 100644 (file)
@@ -19,6 +19,7 @@ type Handlers struct {
        UnmarshalError   HandlerList
        Retry            HandlerList
        AfterRetry       HandlerList
+       CompleteAttempt  HandlerList
        Complete         HandlerList
 }
 
@@ -36,6 +37,7 @@ func (h *Handlers) Copy() Handlers {
                UnmarshalMeta:    h.UnmarshalMeta.copy(),
                Retry:            h.Retry.copy(),
                AfterRetry:       h.AfterRetry.copy(),
+               CompleteAttempt:  h.CompleteAttempt.copy(),
                Complete:         h.Complete.copy(),
        }
 }
@@ -53,6 +55,7 @@ func (h *Handlers) Clear() {
        h.ValidateResponse.Clear()
        h.Retry.Clear()
        h.AfterRetry.Clear()
+       h.CompleteAttempt.Clear()
        h.Complete.Clear()
 }