diff --git a/awx/main/middleware.py b/awx/main/middleware.py index 029830e154..c46c4b3811 100644 --- a/awx/main/middleware.py +++ b/awx/main/middleware.py @@ -79,7 +79,7 @@ class ActivityStreamMiddleware(MiddlewareMixin, threading.local): def __init__(self, get_response=None): self.disp_uid = None self.instance_ids = [] - self.get_response = get_response + super().__init__(get_response) def process_request(self, request): if hasattr(request, 'user') and hasattr(request.user, 'is_authenticated') and request.user.is_authenticated():