(effect: Effect.Effect<A, E>)
| 3089 | // `produceConnectionTools` call sites are. |
| 3090 | const catalogPersistLock = Semaphore.makeUnsafe(1); |
| 3091 | const persistCatalog = <A, E>(effect: Effect.Effect<A, E>) => |
| 3092 | catalogPersistLock.withPermits(1)(transaction(effect)); |
| 3093 | |
| 3094 | const produceConnectionToolsUnshared = ( |
| 3095 | integrationRow: IntegrationRow, |
no test coverage detected