# HG changeset patch # User Sylvain Thénault # Date 1273148807 -7200 # Node ID f3bb53f1737c5614251cc18b80531278ca560701 # Parent 0a6e6fccfd30048061b81f3760dffcbd1b1f1516 [web session] fix potential key error on logout (occurs once the session has been transparently reconnected, hence session.sessionid and session.cnx.sessionid differs) diff -r 0a6e6fccfd30 -r f3bb53f1737c web/application.py --- a/web/application.py Thu May 06 14:27:57 2010 +0200 +++ b/web/application.py Thu May 06 14:26:47 2010 +0200 @@ -270,7 +270,7 @@ """logout from the instance by cleaning the session and raising `AuthenticationError` """ - self.session_manager.close_session(req.cnx) + self.session_manager.close_session(req.session) req.remove_cookie(req.get_cookie(), self.SESSION_VAR) raise LogOut(url=goto_url)