Skip to content

Commit

Permalink
revert authapi retry config change
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Nov 3, 2023
1 parent 6d01c88 commit 9111008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/auth0/client/auth/AuthAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ public Builder withHttpClient(Auth0HttpClient httpClient) {
*/
public AuthAPI build() {
return new AuthAPI(domain, clientId, clientSecret, clientAssertionSigner,
Objects.nonNull(httpClient) ? httpClient : DefaultHttpClient.newBuilder().withMaxRetries(0).build());
Objects.nonNull(httpClient) ? httpClient : DefaultHttpClient.newBuilder().build());
}
}
}

0 comments on commit 9111008

Please sign in to comment.