Skip to content

Commit

Permalink
Changed tcp_nodelay back to false (https://issues.redhat.com/browse/J…
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Oct 1, 2024
1 parent dafd909 commit 1bf3b63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/jgroups/protocols/BasicTCP.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public abstract class BasicTCP extends TP implements Receiver {
"thrown. 0 disables this", type=AttributeType.BYTES)
protected int max_length;

@Property(description="Should TCP no delay flag be turned on")
protected boolean tcp_nodelay=true; // https://issues.redhat.com/browse/JGRP-2781
@Property(description="Should TCP no delay flag be turned on. True: nagling is OFF, false: nagling is ON")
protected boolean tcp_nodelay=false; // https://issues.redhat.com/browse/JGRP-2781

@Property(description="SO_LINGER in seconds. Default of -1 disables it")
protected int linger=-1; // SO_LINGER (number of seconds, -1 disables it)
Expand Down

0 comments on commit 1bf3b63

Please sign in to comment.