You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently grpc_retry supports retry condition by setting code.Codes.
But it is good if retry condition is defined by error message, status details, etc...
So I propose below options.
// When returns true, it is retriable.typeRetriableFuncfunc(errerror) bool// WithRetriable sets which error should be retried.// When this option is set, WithCodes is ignored.funcWithRetriable(ErrorFunc) CallOption
The text was updated successfully, but these errors were encountered:
Currently grpc_retry supports retry condition by setting
code.Codes
.But it is good if retry condition is defined by error message, status details, etc...
So I propose below options.
The text was updated successfully, but these errors were encountered: