We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a2bf1d commit f20facbCopy full SHA for f20facb
1 file changed
pkg/kerrors/kerrors.go
@@ -42,9 +42,10 @@ var (
42
ErrBiz = &basicError{"biz error"}
43
44
ErrRetry = &basicError{"retry error"}
45
- // ErrRPCFinish happens when retry enabled and there is one call has finished
46
- //
47
- // Deprecated: no longer use this definition, but we still keep it to avoid breaking changes.
+ // Deprecated: ErrRPCFinish was used to indicate that the result of this retry
+ // call should be discarded because another attempt has already received and
+ // started decoding the response.
48
+ // No longer needed since v0.15.0, but kept for backward compatibility.
49
ErrRPCFinish = &basicError{"rpc call finished"}
50
// ErrRoute happens when router fail to route this call
51
ErrRoute = &basicError{"rpc route failed"}
0 commit comments