Skip to content

Commit

Permalink
Revert the change made on the TCP_NODELAY default value.
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed May 11, 2024
1 parent df0ecc6 commit 495a282
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ public class DefaultSocketSessionConfig extends AbstractSocketSessionConfig {

private static final int DEFAULT_SO_LINGER = -1;

private static final boolean DEFAULT_TCP_NO_DELAY = true; // Disable Nagle algorithm by default
private static final boolean DEFAULT_TCP_NO_DELAY = false;

protected IoService parent;

Expand Down

0 comments on commit 495a282

Please sign in to comment.