threadstore.py 169 B

1234567
  1. from .. import threadstore
  2. class ThreadStoreMiddleware(object):
  3. def process_response(self, request, response):
  4. threadstore.clear()
  5. return response