Commit e505936efee38071786f2ee86f98b323a0192fb0
1 parent
2762b25f
Exists in
master
and in
39 other branches
Removing expires time from home chart caching
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/home/views.py
... | ... | @@ -33,7 +33,7 @@ def index(request): |
33 | 33 | count_types[trans('wiki')] = sum([ |
34 | 34 | wiki.count for wiki in WikiCollabCount.objects.all() |
35 | 35 | ]) |
36 | - cache.set('home_chart', count_types, 60) | |
36 | + cache.set('home_chart', count_types) | |
37 | 37 | |
38 | 38 | context = { |
39 | 39 | 'hottest_threads': hottest_threads[:6], | ... | ... |