Am 01.12.2012 21:27, schrieb Nick Sabalausky:

On Sat, 1 Dec 2012 13:16:34 -0500
Nick Sabalausky SeeWebsiteToContactMe@semitwist.com wrote:

The correct id is being pulled out of the cookie and getting passed
to MemorySessionStore.open. However, inside MemorySessionStore.open
it looks like msessions is *always* null. Additionally,
MemorySessionStore.set is never getting called, so I assume that's why
m
sessions is always null.

(FWIW, I also put a trace in MemorySessionStore.this and I am indeed
only ever creating one instance of MemorySessionStore.)

Oh, I see what's happening: The session isn't actually getting created
(in MemorySessionStore.m_session) until a value gets added to it. I'm
merely using the session id as a key to lookup my data in a separate AA
(where the value is a struct rather than just strings), so I wasn't
actually adding values to the session, just using the id.

Thanks for tracking it down - fixed now on git master.