canRetry returns whether or not the given error "err" is retriable.
(err error)
| 1029 | |
| 1030 | // canRetry returns whether or not the given error "err" is retriable. |
| 1031 | func (q *TransferQueue) canRetry(err error) bool { |
| 1032 | return errors.IsRetriableError(err) |
| 1033 | } |
| 1034 | |
| 1035 | // canRetryLater returns the number of seconds until an error can be retried and if the error |
| 1036 | // is a delayed-retriable error. |
no test coverage detected