chore: generate

This commit is contained in:
opencode-agent[bot] 2026-08-10 05:55:03 +00:00
parent d97aca139f
commit 5053c1bfdd

View file

@ -100,9 +100,9 @@ export const tracingLayer = Effect.fnUntraced(function* (options: Options | unde
),
}))
return Layer.effectContext(
Effect.acquireRelease(Scope.make(), (scope, exit) =>
Scope.close(scope, exit).pipe(Effect.ignoreCause),
).pipe(Effect.flatMap((scope) => Layer.buildWithScope(tracing, scope))),
Effect.acquireRelease(Scope.make(), (scope, exit) => Scope.close(scope, exit).pipe(Effect.ignoreCause)).pipe(
Effect.flatMap((scope) => Layer.buildWithScope(tracing, scope)),
),
)
})