Re: Beaker bug

2009-02-14 Thread andres
Yep - that fixes the problem. -Andres On Feb 13, 2:35 pm, Ben Bangert wrote: > On Feb 12, 2009, at 12:11 PM, andres wrote: > > > Am I not understanding something about the way sessions work? Why you > > have to save() before calling delete()? Is this a bug? > > Definitely a bug, can you try up

Re: Beaker bug

2009-02-13 Thread Ben Bangert
On Feb 12, 2009, at 12:11 PM, andres wrote: Am I not understanding something about the way sessions work? Why you have to save() before calling delete()? Is this a bug? Definitely a bug, can you try upgrading to tip: easy_install -U https://bitbucket.org/bbangert/beaker/get/2f8a09349efa.gz An

Re: Beaker bug

2009-02-13 Thread Ross Vandegrift
On Feb 12, 3:11 pm, andres wrote: > def end_session(self): >session.delete() > return 'session deleted' > > When you access start_session and test_session everything works as > expected, but end_session does not remove the session from the server > and it also doesn't expire t

Beaker bug

2009-02-12 Thread andres
Hi All, I am moving from Pylons 0.9.6.2 to Pylons 0.9.7rc4 and am seeing strange behavior with the Beaker session. Starting with a fresh installation (Pylons 0.9.7rc4 with Beaker 1.2.1), I setup this simple controller: class HelloworldController(BaseController): def start_session(self):