More information about the segfault. It always happens after a certain ammount
of time. I believe it maybe this:
- session starts correctly
- I navigate throught many pages
- session timeouts
- segfault
It's just a supposition, I will try to confirm it.
I couldn't reproduce it with MemorySessi
This is driving me crazy. I'm finding it hard to make a simple testcase.
I use a custom handler and somewhere in the code I do this:
-- [snip] -
from mypackage.mysubpackage.mysubsubpackage import db
def run(req):
req.sess['foo'] =
More info:
It just happens with some classes. Some work and some won't, and I don't yet
know why. Some info:
In my webapp when user logs in I save a User object (subclassing class
Storable). And then I redirect. Works ok, no problem.
Then, in another page I try to save a Website object (subcl