We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d668ba0 commit 1d3fbecCopy full SHA for 1d3fbec
internal/clientv2/interceptor_retry_simple.go
@@ -207,7 +207,10 @@ func isNetworkErrorWithOpError(err *net.OpError) bool {
207
return isNetworkErrorWithOpError(t)
208
default:
209
desc := err.Err.Error()
210
- if strings.Contains(desc, "use of closed network connection") {
+ if strings.Contains(desc, "use of closed network connection") ||
211
+ strings.Contains(desc, "unexpected EOF reading trailer") ||
212
+ strings.Contains(desc, "transport connection broken") ||
213
+ strings.Contains(desc, "server closed idle connection") {
214
return true
215
}
216
0 commit comments