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 (#23430)

(cherry picked from commit 8600316)
  • Loading branch information
lhotari committed Oct 10, 2024
1 parent 395ba7f commit 15e76a8
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 15e76a8

Please sign in to comment.