Denis Surkov
Denis Surkov
Hi Is there any activity here? Is it still relevant? And if so, what do you expect from this feature?
Hi! Are any updates here? I got the same issue working with a lot of tests, where user creation is required.
This issue will be solved in 4.1.1 Django release: https://docs.djangoproject.com/en/4.1/releases/4.1.1/ Original issue: https://code.djangoproject.com/ticket/33899
I think this is the same as https://github.com/jazzband/django-axes/issues/915
@Stormheg , hi! Are there any thoughts to merge it?
@Stormheg , thank you! That's exactly what I was looking for.
@yezz123 , do you plan to continue work on the pr?
Well, I didn't think about it. Sorry.
Hello! I would like to implement showing warning message if `DebugToolbarMiddleware` is called in async environment. I suppose the easiest way to check if async is enabled is something like...
@tim-schilling , yes, this is an option I can do something like this: ```python3 from inspect import iscoroutinefunction ... class DebugToolbarMiddleware: def __init__(self, get_response): self.get_response = get_response if iscoroutinefunction(get_response): self._warn_djdt_asgi_uneffective()...