# HG changeset patch # User Alexandre Fayolle # Date 1276183538 -7200 # Node ID 3a9cd70bcfdcf55929642f61fd747ac5770e588f # Parent ea2538a3c6221e1e003d065ad76c3b4f87bcc146 fix wrong calculation of clean_session_interval diff -r ea2538a3c622 -r 3a9cd70bcfdc web/application.py --- 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.)