Jose Rojas
Jose Rojas
any update here?
> Hmm, that does not seem good. Is this query latency of connection latency? mmh unfortunately I think this could be either of the two, my application uses django which...
> Second question: Did you compare logs for any differences that could explain the performance difference? e.g. warnings being shown, or new logs types of logs that are not there...
> can you compare cpu usage (before and after) of the pgbouncer process? aha! great suggestion, it seems CPU usage increased by over 30x! 🤯 📈 from a baseline of...
Sorry I did not get to follow up on this this week, in the next few days I will try to: - reproduce the issue again by upgrading to v1.20.0...
I see this [other issue](https://github.com/aminalaee/sqladmin/issues/137) explains this might not be handled soon, maybe this could be added to docs? maybe the workaround shown here can also be helpful for others...
@aminalaee thanks for the quick reply! I'd be open to putting up that PR if that sounds good to you
I was running into the same issue and was able to get around it by creating a jest mock module [ref](https://jestjs.io/docs/manual-mocks#mocking-node-modules) ```ts // src/__mocks__/@sentry/nextjs.ts module.exports = { captureException: jest.fn(), captureMessage:...