style: format agent rotation updates

This commit is contained in:
Eyejoker
2026-03-24 17:09:17 +09:00
parent 8b2c46b89e
commit 744e2ce6e2
5 changed files with 9 additions and 12 deletions

View File

@@ -621,7 +621,9 @@ export class GroupQueue {
if (graceWaitMs > 0) {
await Promise.race([
Promise.all(
activeProcesses.map(({ process }) => this.waitForProcessExit(process)),
activeProcesses.map(({ process }) =>
this.waitForProcessExit(process),
),
),
new Promise((resolve) => setTimeout(resolve, graceWaitMs)),
]);