12 lines
383 B
Go
12 lines
383 B
Go
package client
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
// note that returning either false or a non-nil error will result in the call not being retried
|
|
type RetryFunc func(ctx context.Context, req Request, retryCount int, err error) (bool, error)
|
|
|
|
// always retry on error
|
|
func alwaysRetry(ctx context.Context, req Request, retryCount int, err error) (bool, error) {
|
|
return true, nil
|
|
}
|