🩹 back cli: minor fixes for output flush

This commit is contained in:
Eric Doughty-Papassideris
2025-03-04 17:48:46 +01:00
committed by Anton Shepilov
parent 5e94c91c01
commit 99d78ad5ac
2 changed files with 5 additions and 2 deletions
@@ -45,7 +45,6 @@ async function runInBatches<T, R>(
let batch;
const result = [] as R[];
while ((batch = listCopy.splice(0, batchSize)).length) {
console.error("batch", batch);
result.push(await map(batch));
}
return result;