--- a/web/application.py Thu Jun 10 15:11:30 2010 +0200
+++ b/web/application.py Thu Jun 10 17:25:38 2010 +0200
@@ -59,12 +59,11 @@
assert self.cleanup_anon_session_time > 0
self.authmanager = vreg['components'].select('authmanager', vreg=vreg)
if vreg.config.anonymous_user() is not None:
- self.clean_sessions_interval = min(
- 5 * 60,
- self.cleanup_session_time / 2.,
- self.cleanup_anon_session_time / 2.)
+ self.clean_sessions_interval = max(
+ 5 * 60, min(self.cleanup_session_time / 2.,
+ self.cleanup_anon_session_time / 2.))
else:
- self.clean_sessions_interval = min(
+ self.clean_sessions_interval = max(
5 * 60,
self.cleanup_session_time / 2.)