Skip to content

Commit 9e39b57

Browse files
committed
fix: lint
Signed-off-by: Umberto Sgueglia <usgueglia@contractor.linuxfoundation.org>
1 parent 2dd73f1 commit 9e39b57

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

services/apps/script_executor_worker/src/bin/recalculate-all-affiliations.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ async function main() {
288288
}
289289
}
290290

291-
await Promise.all(Array.from({ length: Math.min(opts.concurrency, toProcess.length) }, worker))
291+
await Promise.all(
292+
Array.from({ length: Math.min(opts.concurrency, toProcess.length) }, worker),
293+
)
292294
log.info(`Page ${pageNum} done: ${totalSucceeded} ok, ${totalFailed} failed`)
293295

294296
if (opts.limit !== null && totalSucceeded + totalFailed >= opts.limit) {

0 commit comments

Comments
 (0)