You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .startLocalProxy method of starting a local Unix socket to connect over used .once which was an oversight. This only allows a single connection via the socket. For a connection pool to leverage several connections at once we should use .on. Tested using Prisma's connection_limit query argument. Using .once only works with connection_limit=1 while using .on allows for connection_limit=2 etc.
0 commit comments