diff --git a/marklogic-client-api/src/main/java/com/marklogic/client/impl/okhttp/RetryInterceptor.java b/marklogic-client-api/src/main/java/com/marklogic/client/impl/okhttp/RetryInterceptor.java index 2f54430a8..eeaaf0294 100644 --- a/marklogic-client-api/src/main/java/com/marklogic/client/impl/okhttp/RetryInterceptor.java +++ b/marklogic-client-api/src/main/java/com/marklogic/client/impl/okhttp/RetryInterceptor.java @@ -68,7 +68,8 @@ private boolean isRetryableException(IOException e) { e.getMessage().contains("Failed to connect") || e.getMessage().contains("unexpected end of stream") || e.getMessage().contains("Connection reset") || - e.getMessage().contains("Read timed out") + e.getMessage().contains("Read timed out") || + e.getMessage().contains("Broken pipe") )); }