Skip to content

Commit 8b8dc16

Browse files
committed
- enables connections retry from ok http lib to avoid bubbling exceptions
1 parent 7c7f008 commit 8b8dc16

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/microsoft/graph/http/CoreHttpProvider.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,6 @@ public Request authenticateRequest(Request request) {
367367
okBuilder.connectTimeout(connectionConfig.getConnectTimeout(), TimeUnit.MILLISECONDS);
368368
okBuilder.readTimeout(connectionConfig.getReadTimeout(), TimeUnit.MILLISECONDS);
369369
okBuilder.followRedirects(false);
370-
okBuilder.retryOnConnectionFailure(false);
371370
this.corehttpClient = okBuilder.build();
372371
}
373372
if (authenticationProvider != null) {

0 commit comments

Comments
 (0)