NoRetryError makes an error which indicates the sync shouldn't be retried.
(err error)
| 169 | // NoRetryError makes an error which indicates the sync shouldn't be |
| 170 | // retried. |
| 171 | func NoRetryError(err error) error { |
| 172 | return wrappedNoRetryError{err} |
| 173 | } |
| 174 | |
| 175 | func (err wrappedNoRetryError) Unwrap() error { |
| 176 | return err.error |
no outgoing calls
searching dependent graphs…