msiebuhr/node-statsd-client

0.15 missing commit

Closed this issue · 2 comments

For whatever reason, the 0.15 module currently on NPM does not have the fix from commit 2273d5a. This prevents the node process from terminating:

var Client = require('statsd-client');
var stats = new Client({
  host: '',
  port: null

});
stats._ephemeralSocket.log = console.log;

stats.increment('blah');
stats.close();

I've forcefully re-published v0.0.15, fetched it and checked the code in question in fact is there.

Thanks for the quick turnaround! Great library, so thanks for the efforts.