restic/internal/backend/rest
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
..
config.go Hide password from repository URLs 2020-09-22 22:00:51 +02:00
config_test.go backend/rest: Ensure base URL ends with slash 2018-04-01 10:18:38 +02:00
rest.go all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
rest_int_go114_test.go rest: Adjust http2 missing eof test to golang >= 1.17.3, >= 1.16.10 2021-11-13 21:57:30 +01:00
rest_int_test.go Use "pack file" instead of "data file" (#2885) 2020-08-16 11:16:38 +02:00
rest_test.go rest: Fix test backend url 2021-08-15 18:16:17 +02:00