(effect: Effect.Effect<A, E>)
| 3258 | // `produceConnectionTools` call sites are. |
| 3259 | const catalogPersistLock = Semaphore.makeUnsafe(1); |
| 3260 | const persistCatalog = <A, E>(effect: Effect.Effect<A, E>) => |
| 3261 | catalogPersistLock.withPermits(1)(transaction(effect)); |
| 3262 | |
| 3263 | const produceConnectionToolsUnshared = ( |
| 3264 | integrationRow: IntegrationRow, |
no test coverage detected