Browse Source

fixes #18, unknown parameter issue

pull/19/head
Brett Langdon 11 years ago
parent
commit
6f2d50850a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/metric.js

+ 1
- 1
lib/api/metric.js View File

@ -35,7 +35,7 @@ var client = require("../client");
*/
function send(metric, points, extra, callback){
if(arguments.length < 4 && typeof arguments[2] === "function"){
callback = tags;
callback = extra;
extra = {};
}


Loading…
Cancel
Save