From 5e137527d53febe4f2ddc83390ea95e7e5145c9d Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Sun, 24 Oct 2021 17:13:33 -0700 Subject: [PATCH] Godoc update for #436 --- request.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/request.go b/request.go index 52166e69..1cd42cf7 100644 --- a/request.go +++ b/request.go @@ -599,6 +599,8 @@ func (r *Request) SetCookies(rs []*http.Cookie) *Request { // The request will retry if any of the functions return true and error is nil. // // Note: These retry conditions are checked before all retry conditions of the client. +// +// Since v2.7.0 func (r *Request) AddRetryCondition(condition RetryConditionFunc) *Request { r.retryConditions = append(r.retryConditions, condition) return r