module ActionDispatch::Session::Compatibility

def generate_sid

def generate_sid
  sid = SecureRandom.hex(16)
  sid.encode!(Encoding::UTF_8)
  sid
end