Brandon Konkle
Brandon Konkle
I'm actually using this to avoid that problem: https://github.com/bkonkle/ignore-if Let me know if this helps!
I really want to help here, but I'm working at full capacity at the moment pushing towards some big goals. I'm going to keep this ticket open, though, and welcome...
I haven't worked with this package in a while, but if there are changes needed to make it compatible with modules, I'm glad to merge a PR. Let me know!...
Hi! Sorry for the delay on this! I'm planning to clean up pull requests in my open source projects this week, after losing track during a job transition. 😅 Thanks...
Yep, I've been contemplating a name change for a little while now. Your suggestion is perfect! When I get some more time, I'll look into the best way to make...
I believe this is an issue related to my specific production configuration, and not with django-balancer itself. Switching to PinningCookieMiddleware resolved the issue for my app. If anyone runs into...
This is definitely an interesting problem, and it's something I want to spend more time thinking about. It makes sense to me to simply pin all the queries from a...
I've finished a first pass at this feature, but I don't have an active project right now that I can do some real testing with. Can you test it out...
It appears that `psycopg2.OperationalError` (the exception raised when the database cannot be connected to) is not caught by the `try...except` block inside `django.core.handlers.base.BaseHandler.get_response`, so I'm not able to use `django.core.signals.got_request_exception`...
I could probably create a new database backend that subclasses DatabaseWrapper and wraps ._cursor() in a `try...except` block. I'd have to make a new backend for every existing backend, though,...