Update dependencies

This commit is contained in:
Ciprian Hacman
2024-02-04 06:24:27 +02:00
parent 58017fd35e
commit ef98b9612e
899 changed files with 44579 additions and 16419 deletions

View File

@@ -366,7 +366,7 @@ skip retry if special error example:
return false
}
return true
})
}),
)
By default RetryIf stops execution if the error is wrapped using

View File

@@ -1 +1 @@
4.5.0
4.5.1

View File

@@ -302,6 +302,13 @@ type unrecoverableError struct {
error
}
func (e unrecoverableError) Error() string {
if e.error == nil {
return "unrecoverable error"
}
return e.error.Error()
}
func (e unrecoverableError) Unwrap() error {
return e.error
}