Skip to content

Commit 30644f5

Browse files
committed
Try complete the batch faster now it’s being used operationally
1 parent b2f2689 commit 30644f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal-packages/run-engine/src/engine/systems/batchSystem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export class BatchSystem {
2323
id: `tryCompleteBatch:${batchId}`,
2424
job: "tryCompleteBatch",
2525
payload: { batchId: batchId },
26-
//2s in the future
27-
availableAt: new Date(Date.now() + 2_000),
26+
//200ms in the future
27+
availableAt: new Date(Date.now() + 200),
2828
});
2929
}
3030

0 commit comments

Comments
 (0)