Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nstott/node-influx into nstott-ma…
Browse files Browse the repository at this point in the history
…ster
  • Loading branch information
bencevans committed Sep 9, 2014
2 parents a2ebc6e + f536f84 commit be57a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -176,7 +176,7 @@ InfluxDB.prototype.writeSeries = function(series, options, callback) {
var v = typeof values[k] === 'undefined' ? null : values[k];
if(k === 'time' && v instanceof Date) {
v = v.valueOf();
query.time_precision = 'm';
query.time_precision = 'ms';
}
point.push(v);
});
Expand Down

0 comments on commit be57a94

Please sign in to comment.