mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
AsyncPool -> asyncPool
This commit is contained in:
parent
9724407e31
commit
cb8c2bf4b5
1 changed files with 6 additions and 6 deletions
|
@ -7,7 +7,7 @@ const crypto = require('crypto')
|
|||
const Streamifier = require('streamifier')
|
||||
const RangeManager = require('./RangeManager')
|
||||
const PersistorManager = require('./PersistorManager')
|
||||
const AsyncPool = require('tiny-async-pool')
|
||||
const asyncPool = require('tiny-async-pool')
|
||||
|
||||
const PARALLEL_JOBS = 5
|
||||
|
||||
|
@ -39,7 +39,7 @@ async function archiveAllDocs(projectId) {
|
|||
throw new Errors.NotFoundError(`No docs for project ${projectId}`)
|
||||
}
|
||||
|
||||
await AsyncPool(
|
||||
await asyncPool(
|
||||
PARALLEL_JOBS,
|
||||
docs.filter((doc) => !doc.inS3),
|
||||
(doc) => archiveDoc(projectId, doc)
|
||||
|
@ -85,10 +85,10 @@ async function unArchiveAllDocs(projectId) {
|
|||
throw new Errors.NotFoundError(`No docs for project ${projectId}`)
|
||||
}
|
||||
if (!docs.length) {
|
||||
// AsyncPool will throw an error with an empty array
|
||||
// asyncPool will throw an error with an empty array
|
||||
return
|
||||
}
|
||||
await AsyncPool(PARALLEL_JOBS, docs, (doc) =>
|
||||
await asyncPool(PARALLEL_JOBS, docs, (doc) =>
|
||||
unarchiveDoc(projectId, doc._id)
|
||||
)
|
||||
}
|
||||
|
@ -141,8 +141,8 @@ async function destroyAllDocs(projectId) {
|
|||
{ include_deleted: true },
|
||||
{ _id: 1 }
|
||||
)
|
||||
if (docs) {
|
||||
await AsyncPool(PARALLEL_JOBS, docs, (doc) =>
|
||||
if (docs && docs.length) {
|
||||
await asyncPool(PARALLEL_JOBS, docs, (doc) =>
|
||||
destroyDoc(projectId, doc._id)
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue