restic/internal/backend/rclone
greatroar f92ecf13c9 all: Move away from pkg/errors, easy cases
github.com/pkg/errors is no longer getting updates, because Go 1.13
went with the more flexible errors.{As,Is} function. Use those instead:
errors from pkg/errors already support the Unwrap interface used by 1.13
error handling. Also:

* check for io.EOF with a straight ==. That value should not be wrapped,
  and the chunker (whose error is checked in the cases changed) does not
  wrap it.
* Give custom Error methods pointer receivers, so there's no ambiguity
  when type-switching since the value type will no longer implement error.
* Make restic.ErrAlreadyLocked private, and rename it to
  alreadyLockedError to match the stdlib convention that error type
  names end in Error.
* Same with rest.ErrIsNotExist => rest.notExistError.
* Make s3.Backend.IsAccessDenied a private function.
2022-06-14 08:36:38 +02:00
..
backend.go rclone: Fix timeout calculation 2021-11-07 17:49:33 +01:00
backend_test.go all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
config.go rclone: Fix timeout calculation 2021-11-07 17:49:33 +01:00
config_test.go rclone: add timeout option and documentation 2021-11-07 17:49:21 +01:00
internal_test.go all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
stdio_conn.go rclone: Better field names for stdio conn 2020-07-26 00:29:25 +02:00