Skip to content

Commit

Permalink
[improve][client] Increase default Java client connectionMaxIdleSecon…
Browse files Browse the repository at this point in the history
…ds to 60 seconds (apache#23430)

(cherry picked from commit 8600316)
(cherry picked from commit 15e76a8)
  • Loading branch information
lhotari authored and srinath-ctds committed Oct 16, 2024
1 parent 6643db7 commit 946fc04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class ClientConfigurationData implements Serializable, Cloneable {
value = "Release the connection if it is not used for more than [connectionMaxIdleSeconds] seconds. "
+ "If [connectionMaxIdleSeconds] < 0, disabled the feature that auto release the idle connections"
)
private int connectionMaxIdleSeconds = 25;
private int connectionMaxIdleSeconds = 60;

@ApiModelProperty(
name = "useTcpNoDelay",
Expand Down

0 comments on commit 946fc04

Please sign in to comment.