# HG changeset patch # User Brian Neal # Date 1294718684 0 # Node ID 58e9b8b2965f1a51989a3cee637ea7152d863205 # Parent c7c427411f03dc12f33c92796f9710ecc2ccc4a6 Fixing #135; adjusted cache timeout value to 60 seconds. diff -r c7c427411f03 -r 58e9b8b2965f gpp/core/templatetags/core_tags.py --- 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