Adjusting names
This commit is contained in:
8
client/retry.go
Normal file
8
client/retry.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package client
|
||||
|
||||
type RetryFunc func(err error) bool
|
||||
|
||||
// always retry on error
|
||||
func alwaysRetry(err error) bool {
|
||||
return true
|
||||
}
|
||||
Reference in New Issue
Block a user