You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 1245 to 1258,
return parallel(keys, function(docKey, next) {
if (filter.length >= 3) {
return filter(cache[docKey], docKey, function(match) {
if (match) results++;
return next();
});
}
if (filter(cache[docKey], docKey) === true) {
results++;
}
return next();
});
return done(null, results);
after first return parallel done function never call, because parallel function already returned
when call db.find({}).count()(function(){})
The text was updated successfully, but these errors were encountered:
line 1245 to 1258,
return parallel(keys, function(docKey, next) {
if (filter.length >= 3) {
return filter(cache[docKey], docKey, function(match) {
if (match) results++;
return next();
});
}
if (filter(cache[docKey], docKey) === true) {
results++;
}
return next();
});
return done(null, results);
after first return parallel done function never call, because parallel function already returned
when call db.find({}).count()(function(){})
The text was updated successfully, but these errors were encountered: