Re: [Zope-dev] Zope 2.X Session problems

2004-05-14 Thread Chris McDonough
I figured out what this is; it's a genuine bug, sorry. Until I get it fixed, please comment out these lines of Transience.py to make things OK: if self._limit and len(self) = self._limit: LOG('Transience', WARNING, ('Transient object container %s

Re: [Zope-dev] Zope 2.X Session problems

2004-05-06 Thread Kris Erickson
No, that's not the problem; in THEORY that's what is happening, but in reality there is no way that this is the case; We just unrolled a registration system with participation rates at or around 100 to 200 participants per month; At any given time, monitoring the session data container, there

Re: [Zope-dev] Zope 2.X Session problems

2004-05-06 Thread Michael Dunstan
On 7/05/2004, at 5:15 AM, Kris Erickson wrote: No, that's not the problem; in THEORY that's what is happening, but in reality there is no way that this is the case; We just unrolled a registration system with participation rates at or around 100 to 200 participants per month; At any given time,

Re: [Zope-dev] Zope 2.X Session problems

2004-05-05 Thread Chris Withers
Kris Erickson wrote: Per this thread that seems to have been dropped (MaxTransientObjectsExceeded Error); This means more unique users have accessed your site than the maximum configured number of sessions. Go to the session data container objectin the the temp folder and tweak the config so

Re: [Zope-dev] Zope 2.X Session problems

2004-05-05 Thread Chris McDonough
The data object timeout value was what I needed. I'm afraid though that in this case I don't have a good answer for why they're not being expired. I will put looking into this on my todo list. On Tue, 2004-05-04 at 09:32, Alex V. Koval wrote: Hi Chris, On Wed, 21 Apr 2004 11:36:59 -0400,

Re: [Zope-dev] Zope 2.X Session problems

2004-05-04 Thread Alex V. Koval
Hi Chris, On Wed, 21 Apr 2004 11:36:59 -0400, Chris McDonough [EMAIL PROTECTED] wrote: What do you have the transient object timeout set for? Do you mean this (/temp_folder/session_data): Data object timeout value in minutes: 20 Also, here is a part of zope.conf for your reference: # from

[Zope-dev] Zope 2.X Session problems

2004-05-04 Thread Kris Erickson
Per this thread that seems to have been dropped (MaxTransientObjectsExceeded Error); I have been having a similar situation--i'm wondering if it's a situation in which a for loop is getting passed null values to set into session? Example: form = {} for k,v in request.form.items():

Re: [Zope-dev] Zope 2.X Session problems

2004-04-21 Thread alex
Hi Chris, On Tue, 20 Apr 2004, Chris McDonough wrote: I am using new Transience.py, and my temp_folder is on Sessions.fs ZODB now. I have one problem with it - it does not seems that this way it deletes old expired Sessions. The number of objects grow and grow, and today we reached

Re: [Zope-dev] Zope 2.X Session problems

2004-04-21 Thread Chris McDonough
What do you have the transient object timeout set for? On Wed, 2004-04-21 at 02:57, [EMAIL PROTECTED] wrote: Hi Chris, On Tue, 20 Apr 2004, Chris McDonough wrote: I am using new Transience.py, and my temp_folder is on Sessions.fs ZODB now. I have one problem with it - it does not

[Zope-dev] Zope 2.X Session problems

2004-04-20 Thread alex
Hi Chris, On Wed, 3 Mar 2004, Chris McDonough wrote: Great, I'm going to consider that a resounding endorsement and check it in soon; please do let me know if you see anything odd come up. If anyone else has been having issues with the old Transience module, and would like to provide