Ensuring Finalizers Run in Concurrent Effects
hi, i have a effect with finalizers, and i am looping that effect on an array using Effect.forEach and then running all concurrently with Effect.all, problem is that finalizers are not getting executed, how can i make sure that finalizer runs?, since those effect is creating a database transaction and locking the db and not releasing untill all effect are executed (this is causing db connection limit)
