2016-11-07 11:40:11 +03:00
|
|
|
package client
|
|
|
|
|
2018-03-03 14:53:52 +03:00
|
|
|
import (
|
|
|
|
"context"
|
2018-07-22 19:41:58 +03:00
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/errors"
|
2018-03-03 14:53:52 +03:00
|
|
|
)
|
2016-11-07 19:10:40 +03:00
|
|
|
|
2016-11-07 19:51:28 +03:00
|
|
|
// note that returning either false or a non-nil error will result in the call not being retried
|
2016-11-07 19:10:40 +03:00
|
|
|
type RetryFunc func(ctx context.Context, req Request, retryCount int, err error) (bool, error)
|
2016-11-07 11:40:11 +03:00
|
|
|
|
2018-07-22 19:41:58 +03:00
|
|
|
// RetryAlways always retry on error
|
|
|
|
func RetryAlways(ctx context.Context, req Request, retryCount int, err error) (bool, error) {
|
2016-11-07 19:39:05 +03:00
|
|
|
return true, nil
|
2016-11-07 11:40:11 +03:00
|
|
|
}
|
2018-07-22 19:41:58 +03:00
|
|
|
|
|
|
|
// RetryOnError retries a request on a 500 or timeout error
|
|
|
|
func RetryOnError(ctx context.Context, req Request, retryCount int, err error) (bool, error) {
|
|
|
|
if err == nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
e := errors.Parse(err.Error())
|
|
|
|
if e == nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch e.Code {
|
|
|
|
// retry on timeout or internal server error
|
|
|
|
case 408, 500:
|
|
|
|
return true, nil
|
|
|
|
default:
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|