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 77daa2f commit bf6f5c1Copy full SHA for bf6f5c1
marklogic-client-api/src/main/java/com/marklogic/client/impl/okhttp/RetryInterceptor.java
@@ -68,7 +68,8 @@ private boolean isRetryableException(IOException e) {
68
e.getMessage().contains("Failed to connect") ||
69
e.getMessage().contains("unexpected end of stream") ||
70
e.getMessage().contains("Connection reset") ||
71
- e.getMessage().contains("Read timed out")
+ e.getMessage().contains("Read timed out") ||
72
+ e.getMessage().contains("Broken pipe")
73
));
74
}
75
0 commit comments