This project is archived and is in readonly mode.

#2285 ✓stale
Fjan

session.to_hash() doesn't lazy load

Reported by Fjan | March 18th, 2009 @ 02:48 PM | in 3.x

session.to_hash forgets to check if it's loaded, returning an empty hash if it's not yet loaded. Workaround is to call session.inspect before accessing session.to_hash (or any other session related method)

Solution is to simply add this on line 38 of abstract_store.rb

load! unless @loaded

Comments and changes to this ticket

  • Bob Zoller
  • Jeremy Kemper

    Jeremy Kemper May 4th, 2010 @ 06:48 PM

    • Milestone changed from 2.x to 3.x
  • codemanki

    codemanki October 12th, 2010 @ 07:58 PM

    • Importance changed from “” to “”

    I tried to recheck this bug, but got nothing:

    class TestController < ApplicationController
    require "pp"

    def one

    {mkd-extraction-3428d314cffbe6c81677aaeb159e9ce0}

    end

    def two

    {mkd-extraction-68292c4e5a150c1797b3bb8655a0bf08}

    end end

    It works fine and outputs session object with session_id and "ola" => 1 . Am i doing it right?

  • codemanki

    codemanki October 12th, 2010 @ 07:58 PM

    Ah! Something wrong with the code
    class TestController < ApplicationController
    require "pp"

    def one

    session[:ola] = 1
    render :text => "this is one"
    

    end

    def two

    pp session.to_hash
    render :text => "this is two #{session}"
    

    end end

  • Ryan Bigg

    Ryan Bigg October 19th, 2010 @ 08:27 AM

    Automatic cleanup of spam.

  • Santiago Pastorino

    Santiago Pastorino February 2nd, 2011 @ 04:48 PM

    • State changed from “new” to “open”

    This issue has been automatically marked as stale because it has not been commented on for at least three months.

    The resources of the Rails core team are limited, and so we are asking for your help. If you can still reproduce this error on the 3-0-stable branch or on master, please reply with all of the information you have about it and add "[state:open]" to your comment. This will reopen the ticket for review. Likewise, if you feel that this is a very important feature for Rails to include, please reply with your explanation so we can consider it.

    Thank you for all your contributions, and we hope you will understand this step to focus our efforts where they are most helpful.

  • Santiago Pastorino

    Santiago Pastorino February 2nd, 2011 @ 04:48 PM

    • State changed from “open” to “stale”

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Pages