Is there possibility to tune prisma client's connection pool limit or something like this?
When I run integration tests — big amount of sequential requests — at some point database starts just dropping connections and goes offline. This issue was not present on 3.3.0, but after update to 3.6.0 it began to rise.
It seems like too many connections issue — I've had this in older tests flow with 3.3.0 when client's instances were creating per each request and connections count quickly raised, but when I've changed this and instantiated one client per process — that was fixed. And now, when I still have only one client that makes a lot of sequential requests, with 3.6.0 I have this problem