1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-26 09:47:49 +00:00
restic/internal/backend
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
..
azure
b2
dryrun
gs
local
location
mem all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
rclone all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
rest all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
s3 all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
sftp all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
swift all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
test all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
testdata
backend_error.go
backend_retry.go
backend_retry_test.go
doc.go
foreground.go
foreground_sysv.go
foreground_test.go
foreground_unix.go
foreground_windows.go
http_transport.go
layout.go all: Move away from pkg/errors, easy cases 2022-06-14 08:36:38 +02:00
layout_default.go
layout_rest.go
layout_s3legacy.go
layout_test.go
paths.go
semaphore.go
shell_split.go
shell_split_test.go
utils.go
utils_test.go