Skip to content

Commit

Permalink
SetKeepAlive initialDelay to 30ms
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Sep 3, 2013
1 parent cc643ee commit 5c9ffb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Endpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ _.extend(Endpoint.prototype, EventEmitter.prototype, {

this.socket.setTimeout(0);
this.socket.setNoDelay();
this.socket.setKeepAlive(true);
this.socket.setKeepAlive(true, 30);
},

reconnect:function(number, delay){
Expand Down

0 comments on commit 5c9ffb8

Please sign in to comment.