Changes between Initial Version and Version 1 of Ticket #31928, comment 3
- Timestamp:
- Aug 24, 2020, 9:34:16 AM (4 years ago)
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__().1 I think it's a bug in SecurityMiddleware : its `__init__` does not call `super().__init__()`. 2 2 3 This causes MiddlewareMixin._async_check()to not be called during init and the4 _is_coroutine magic attribute to be missing despite the async_capable=True 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` 5 5 declaration.