diff --git a/apps/greencheck/viewsets.py b/apps/greencheck/viewsets.py index 3b1ffab7..ed33fba3 100644 --- a/apps/greencheck/viewsets.py +++ b/apps/greencheck/viewsets.py @@ -120,7 +120,7 @@ def retrieve(self, request, *args, **kwargs): # try our cache first before hitting the database if not skip_cache: - cache_hit = redis_cache.get(f"domains:{domain}") + cache_hit = redis_cache.get(f"domain:{domain}") if cache_hit: process_log.send(domain) return response.Response(json.loads(cache_hit))