Rails3 CookieOverflow
I am getting this error:
ActionDispatch::Cookies::CookieOverflow
In config/application.rb I have:
config.session_store :active_record_store
There is no data being stored in th开发者_运维知识库e sessions table.
I am using RubyCAS-client with this code:
https://github.com/zuk/rubycas-client-railsAm I doing something wrong to have the code stored in the database or is this code not setup to use active record store?
I figured it out, I was doing it in config/application.rb. When I changed it in config/initializers/session_store.rb it worked.
I don't know if this is completely right because I assume config/application.rb is the place it should be?
精彩评论