chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-03 18:24:37 +00:00
parent 387220f368
commit 28112fbd12
4 changed files with 20 additions and 13 deletions
@@ -32,7 +32,12 @@ export const layer = Layer.sync(Service)(() => {
const active = Array.from(sockets)
sockets.clear()
yield* Effect.all(
active.map((close) => close.pipe(Effect.timeout("1 second"), Effect.catch(() => Effect.void))),
active.map((close) =>
close.pipe(
Effect.timeout("1 second"),
Effect.catch(() => Effect.void),
),
),
{ concurrency: "unbounded", discard: true },
)
}),