web/application.py
branchstable
changeset 5721 3a9cd70bcfdc
parent 5650 86e874fe30ea
child 5736 375819ec7d43
child 5865 af414723598d
--- 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.)