Changes between Initial Version and Version 1 of Ticket #31928, comment 3


Ignore:
Timestamp:
Aug 24, 2020, 9:34:16 AM (4 years ago)
Author:
Kevin Michel

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31928, comment 3

    initial v1  
    1 I think it's a bug in SecurityMiddleware : its __init__ does not call super().__init__().
     1I think it's a bug in SecurityMiddleware : its `__init__` does not call `super().__init__()`.
    22
    3 This causes MiddlewareMixin._async_check() to not be called during init and the
    4 _is_coroutine magic attribute to be missing despite the async_capable=True
     3This causes `MiddlewareMixin._async_check()` to not be called during init and the
     4`_is_coroutine` magic attribute to be missing despite the `async_capable=True`
    55declaration.
Back to Top