I have a small Sinatra app that uses Rack::Session::Pool.

I'm doing -


get '/' do
  session.clear
  session[:session_id] = UUIDTools::UUID.timestamp_create.to_s
  redirect '/main'
end


- by the time I get to -


get '/main' do
   session[:session_id]
   ...
   ...
end

- my session[:session_id] is nil


It seems to have started after switching from 1 dyno to 2 dynos.

Am I doing something wrong?

Thanks






-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to