I am looking for a Django SSO package that supports OpenId and Azure AD
with multi-tenant support. My sense is I am going to have to roll my own by
forking the best of breed SSO's and adding multi-tenant support to them.
Is my assessment correct?
Thanks.
--
You received this message because you
I am chasing a database deadlock issue in my application. What appears to
be happening is my SyncConsumers are eating up all the ASGI threads because
they are hung and websocket connections start failing.
Is there a way to add a uWSGI "harakiri" like functionality to
SyncConsumers to defend agains
We have had the occasional case where it appears a given SyncConsumer
hangs. These seem to starve Channels of ASGI threads, eventually breaking
all clients that are trying to send or connect.
Is there any way to build in a timeout, meaning if a SyncConsumer doesn't
finish its request in (say) 5 se
Well if you want the clients IP logged or need to do something with it on
the request:
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
On Mon, Apr 20, 2020 at 5:55 PM Shaheed Haque
wrote:
>
>
> On Mon, 20 Apr 2020 at 21:54, Filbert wrote:
>
>> *Answe
For sure, in order to support haproxy/redis-sentinel asgi_redis would have
to handle redis-py's ReadOnlyError and reopen the connection. Way above
my pay grade to inject this into 1.X. It seems 2.X might suffer from the
same issue as I don't see it handling this condition either. Still baffles
I am trying to get NewRelic monitoring my ASGI code written in Django
Channels.
Most notably, this line of code from their examples should create a
NewRelic transaction and start monitoring all async activity.
channel_layer =
newrelic.agent.ASGIApplicationWrapper(get_default_application())
Ha
6 matches
Mail list logo