changeset 300:58e9b8b2965f

Fixing #135; adjusted cache timeout value to 60 seconds.
author Brian Neal <bgneal@gmail.com>
date Tue, 11 Jan 2011 04:04:44 +0000
parents c7c427411f03
children ee451ad46af1
files gpp/core/templatetags/core_tags.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/core/templatetags/core_tags.py	Mon Jan 10 04:22:21 2011 +0000
+++ b/gpp/core/templatetags/core_tags.py	Tue Jan 11 04:04:44 2011 +0000
@@ -54,7 +54,7 @@
     info['num_guests'] = num_guests
     info['total'] = num_users + num_guests
 
-    cache.set('whos_online', info, 300)
+    cache.set('whos_online', info, 60)
     return info