Change to callback method

This commit is contained in:
Michael Morrison 2013-07-10 05:06:44 -05:00
parent 8552d0674f
commit fd735e248f
2 changed files with 7 additions and 2 deletions

View file

@ -30,9 +30,11 @@ module.exports = {
query.options = options;
activeQueries.push(query);
query.on('finished', function() {
query.on('finished',function(state) {
var i = activeQueries.indexOf(query);
if(i >= 0) activeQueries.splice(i, 1);
if(options.callback) options.callback(state);
});
process.nextTick(function() {