When "django.middleware.cache.FetchFromCacheMiddleware" is included in MIDDLEWARE it ends up caching the get_progress view, which is not ideal since the idea for get_progress is to periodically provide updates to the client about task status. Adding the @never_cache decorator prevents django from caching this view.
When "django.middleware.cache.FetchFromCacheMiddleware" is included in MIDDLEWARE it ends up caching the get_progress view, which is not ideal since the idea for get_progress is to periodically provide updates to the client about task status. Adding the @never_cache decorator prevents django from caching this view.
Fixxes Issue #70