remove stray async
This commit is contained in:
parent
fbc0dd40da
commit
6612919f96
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ mongoose.connection.on('error', () => {
|
|||
|
||||
const CHUNK = 1000;
|
||||
Project.count({})
|
||||
.exec().then(async (numProjects) => {
|
||||
.exec().then((numProjects) => {
|
||||
console.log(numProjects);
|
||||
let index = 0;
|
||||
async.whilst(
|
||||
|
|
Loading…
Reference in a new issue