(effect: Effect.Effect<A, E>)
| 3517 | // `produceConnectionTools` call sites are. |
| 3518 | const catalogPersistLock = Semaphore.makeUnsafe(1); |
| 3519 | const persistCatalog = <A, E>(effect: Effect.Effect<A, E>) => |
| 3520 | catalogPersistLock.withPermits(1)(transaction(effect)); |
| 3521 | |
| 3522 | const produceConnectionToolsUnshared = ( |
| 3523 | integrationRow: IntegrationRow, |
no test coverage detected