It's the weirdest thing. When I ran the Rails WEBrick debugger yesterday I could do things like
cookies[uid] = s.session_id
where 'uid' is a passed argument that has a user id in it, and then expect
cookies[uid]
to give me back, say:
29b93443d9ec18168a26e1ab12957b0dd0b799ff
Today, I always get back 'nil'. I can read existing values just fine. Any of the keys listed in
cookies.keys
work just fine.
Does anyone have a possible explanation for this behavior. It is very maddening, and a Google search hasn't yielded an answer.