Skip to content

Commit bdb059e

Browse files
committed
added batch size in loop
1 parent b090eb3 commit bdb059e

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

snyk_output.log

Whitespace-only changes.

src/core/query-executor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ export class QueryExporter {
328328
log(this.exportQueryConfig, `Processing assets in ${totalBatches} batches of ${batchSize}`, 'info');
329329

330330
// Process assets in batches
331-
for (let i = 0; i < 2; i++) {
331+
for (let i = 0; i < batchSize; i++) {
332332
const start = i * batchSize;
333333
const end = Math.min(start + batchSize, assetUIDs.length);
334334
const batchAssetUIDs = assetUIDs.slice(start, end);

0 commit comments

Comments
 (0)