Skip to content

Commit

Permalink
[dist] 0.0.9
Browse files Browse the repository at this point in the history
* Adds default ports
  • Loading branch information
dscape committed Nov 14, 2012
1 parent da549e7 commit 43f50ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/lynx.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ function Lynx(host, port, options) {
//
// Server hostname and port
//
this.host = host;
this.port = port;
this.host = host || '127.0.0.1';
this.port = port || 8125;

//
// Optional shared socket
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "name" : "lynx"
, "description" : "Minimalistic StatsD client for Node.js programs"
, "version" : "0.0.8"
, "version" : "0.0.9"
, "author" : "Lloyd Hilaiel"
, "contributors": [ "Nuno Job <nunojobpinto@gmail.com> (http://nunojob.com)" ]
, "scripts" : { "test": "tap tests/*-test.js" }
Expand Down

0 comments on commit 43f50ad

Please sign in to comment.