summaryrefslogtreecommitdiffstats
path: root/jrt/src/com/yahoo/jrt/Acceptor.java
diff options
context:
space:
mode:
Diffstat (limited to 'jrt/src/com/yahoo/jrt/Acceptor.java')
-rw-r--r--jrt/src/com/yahoo/jrt/Acceptor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jrt/src/com/yahoo/jrt/Acceptor.java b/jrt/src/com/yahoo/jrt/Acceptor.java
index 9e9dafcbcb5..aed22ac090c 100644
--- a/jrt/src/com/yahoo/jrt/Acceptor.java
+++ b/jrt/src/com/yahoo/jrt/Acceptor.java
@@ -101,7 +101,7 @@ public class Acceptor {
while (serverChannel.isOpen()) {
try {
TransportThread tt = parent.selectThread();
- tt.addConnection(new Connection(tt, owner, serverChannel.accept()));
+ tt.addConnection(new Connection(tt, owner, serverChannel.accept(), parent.getTcpNoDelay()));
tt.sync();
} catch (ClosedChannelException ignore) {
} catch (Exception e) {