remove stray async

This commit is contained in:
Cassie Tarakajian 2017-12-27 12:22:12 -05:00
parent fbc0dd40da
commit 6612919f96

View file

@ -27,7 +27,7 @@ mongoose.connection.on('error', () => {
const CHUNK = 1000; const CHUNK = 1000;
Project.count({}) Project.count({})
.exec().then(async (numProjects) => { .exec().then((numProjects) => {
console.log(numProjects); console.log(numProjects);
let index = 0; let index = 0;
async.whilst( async.whilst(