I just upgraded from Devise 1.1.5 to 1.4.5 to use with Rails 3.1 (1.1.5 seems to cause a bcrypt gem version problem).

Now user_signed_in? throws " wrong number of arguments (1 for 2)"

Stack trace is:
devise (1.4.5) lib/devise/models/authenticatable.rb:89:in `serialize_from_session'
devise (1.4.5) lib/devise/rails/warden_compat.rb:27:in `deserialize'
warden (1.0.5) lib/warden/session_serializer.rb:31:in `fetch'
warden (1.0.5) lib/warden/proxy.rb:182:in `user'
warden (1.0.5) lib/warden/proxy.rb:278:in `_perform_authentication'
warden (1.0.5) lib/warden/proxy.rb:90:in `authenticate'
devise (1.4.5) lib/devise/controllers/helpers.rb:48:in `current_user'
devise (1.4.5) lib/devise/controllers/helpers.rb:44:in `user_signed_in?'
app/controllers/main_controller.rb:24:in `index'
actionpack (3.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
actionpack (3.1.0) lib/abstract_controller/base.rb:167:in `process_action'
.....

Anyone experiencing this?

link|improve this question
I've got this issue too. It looks like it's an issue with existing sessions; I open up an Incognito window and everything's fine. I've tried both rake tmp:clear and User.all.map { |u| u.forget_me! } with no luck. – dazonic Sep 15 '11 at 8:12
I managed to hack it by changing my cookie session key in config/initializers/session_store.rb. – dazonic Sep 15 '11 at 8:18
feedback

3 Answers

I ran rake tmp:clear and changed the name of my session in session_store.rb

Woodhack::Application.config.session_store :cookie_store, :key => '_NEW_NAME_HERE_session'

link|improve this answer
Yeah looks like this probably was the problem. I hacked the serialize_from_session method a little just to see what was going on, then reinstalled the original 1.4.5 gem and everything works fine. – mmadrid99 Sep 17 '11 at 5:04
1  
Jepp, changing the session name is the way to go if you use cookie based sessions! rake tmp:clear has no effect in this case IMHO. – Malte Sep 21 '11 at 21:26
feedback

You can also change one character in your config/initializers/secret_token.rb

link|improve this answer
feedback

I had the same problem. I found the problem to be the transition between 1.1.x and 1.2. See this page for more information: http://blog.mythictechnologies.com/2011/04/14/upgrading-devise-from-1-1-x-to-1-2-1/ . Once I followed those steps I was able to upgrade to 1.4.x.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.