Skip to content

Commit

Permalink
Fix computeStats script
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaninotto committed Apr 19, 2012
1 parent ccb4aa1 commit ff1f5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixtures/computeStats.js
Expand Up @@ -31,7 +31,7 @@ var updateLastHourQos = function(callback) {
console.log('Updating last hour Qos for all checks');
async.series([
function(cb) { Ping.updateLast24HoursQos(cb); },
function(cb) { Ping.updateLastHourQos(callback); }
function(cb) { Ping.updateLastHourQos(cb); }
], callback);
}

Expand Down

0 comments on commit ff1f5c5

Please sign in to comment.