Skip to content

Commit

Permalink
Bump to 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Oct 1, 2012
1 parent ef9bbbf commit f8cb468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/Endpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ _.extend(Endpoint.prototype, require('events').EventEmitter.prototype, {
this.socket.on('data', this.onData);
this.socket.on('close', this.onClose);
this.socket.on('error', this.onError);

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

reconnect:function(number, delay){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "redsmin",
"description": "Redsmin daemon for the Redsmin service",
"version": "0.1.7",
"version": "0.1.8",
"keywords": [
"redis",
"redsmin",
Expand Down

0 comments on commit f8cb468

Please sign in to comment.