Skip to content

Commit

Permalink
Change the default value of maxLookupRedirects of Java client (#7126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Masahiro Sakamoto authored Jun 1, 2020
1 parent 7314ac2 commit db5cb32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class ClientConfigurationData implements Serializable, Cloneable {
private boolean tlsHostnameVerificationEnable = false;
private int concurrentLookupRequest = 5000;
private int maxLookupRequest = 50000;
private int maxLookupRedirects = 100;
private int maxLookupRedirects = 20;
private int maxNumberOfRejectedRequestPerConnection = 50;
private int keepAliveIntervalSeconds = 30;
private int connectionTimeoutMs = 10000;
Expand Down

0 comments on commit db5cb32

Please sign in to comment.