summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-06-15 19:16:36 -0700
committerAdam Jacob <adam@hjksolutions.com>2008-06-15 19:16:36 -0700
commit27ce0ace33b34bd552e5b07dac102f3b2b39279f (patch)
treea5d063142fa75566efb5eac20110da2ea1cb4a28
parentebc1b392fe7e8f0fbabc305c299b4d365d2b4d9b (diff)
downloadchef-27ce0ace33b34bd552e5b07dac102f3b2b39279f.tar.gz
chef-server is now moved to lib
-rw-r--r--packages/chef-server/Rakefile34
-rw-r--r--packages/chef-server/app/controllers/application.rb69
-rw-r--r--packages/chef-server/app/controllers/exceptions.rb20
-rw-r--r--packages/chef-server/app/controllers/nodes.rb74
-rw-r--r--packages/chef-server/app/controllers/openid_consumer.rb99
-rw-r--r--packages/chef-server/app/controllers/openid_register.rb74
-rw-r--r--packages/chef-server/app/controllers/openid_server.rb218
-rw-r--r--packages/chef-server/app/helpers/global_helpers.rb17
-rw-r--r--packages/chef-server/app/helpers/nodes_helper.rb19
-rw-r--r--packages/chef-server/app/helpers/openid_server_helpers.rb9
-rw-r--r--packages/chef-server/app/views/exceptions/bad_request.json.erb1
-rw-r--r--packages/chef-server/app/views/exceptions/internal_server_error.html.erb216
-rw-r--r--packages/chef-server/app/views/exceptions/not_acceptable.html.erb63
-rw-r--r--packages/chef-server/app/views/exceptions/not_found.html.erb47
-rw-r--r--packages/chef-server/app/views/layout/application.html.haml22
-rw-r--r--packages/chef-server/app/views/nodes/_action.html.haml13
-rw-r--r--packages/chef-server/app/views/nodes/_node.html.haml11
-rw-r--r--packages/chef-server/app/views/nodes/_resource.html.haml22
-rw-r--r--packages/chef-server/app/views/nodes/compile.html.haml5
-rw-r--r--packages/chef-server/app/views/nodes/index.html.haml9
-rw-r--r--packages/chef-server/app/views/nodes/show.html.haml1
-rw-r--r--packages/chef-server/app/views/openid_consumer/index.html.haml25
-rw-r--r--packages/chef-server/app/views/openid_consumer/start.html.haml4
-rw-r--r--packages/chef-server/app/views/openid_login/index.html.haml6
-rw-r--r--packages/chef-server/app/views/openid_register/index.html.haml15
-rw-r--r--packages/chef-server/app/views/openid_register/show.html.haml5
-rw-r--r--packages/chef-server/app/views/openid_server/decide.html.haml27
-rw-r--r--packages/chef-server/autotest/discover.rb1
-rw-r--r--packages/chef-server/autotest/merb.rb149
-rw-r--r--packages/chef-server/autotest/merb_rspec.rb223
-rw-r--r--packages/chef-server/config/chef-server.rb11
-rw-r--r--packages/chef-server/config/environments/development.rb7
-rw-r--r--packages/chef-server/config/environments/production.rb7
-rw-r--r--packages/chef-server/config/environments/rake.rb7
-rw-r--r--packages/chef-server/config/environments/test.rb6
-rw-r--r--packages/chef-server/config/init.rb157
-rw-r--r--packages/chef-server/config/rack.rb1
-rw-r--r--packages/chef-server/config/router.rb60
-rw-r--r--packages/chef-server/log/merb_test.log12232
-rw-r--r--packages/chef-server/public/images/merb.jpgbin5815 -> 0 bytes
-rw-r--r--packages/chef-server/public/merb.fcgi22
-rw-r--r--packages/chef-server/public/stylesheets/master.css153
-rw-r--r--packages/chef-server/spec/authenticated_system_spec_helper.rb16
-rw-r--r--packages/chef-server/spec/controllers/log/merb_test.log3
-rw-r--r--packages/chef-server/spec/controllers/nodes_spec.rb214
-rw-r--r--packages/chef-server/spec/controllers/openid_consumer_spec.rb29
-rw-r--r--packages/chef-server/spec/controllers/openid_register_spec.rb93
-rw-r--r--packages/chef-server/spec/helpers/nodes_helpers.rb5
-rw-r--r--packages/chef-server/spec/log/merb_test.log2
-rw-r--r--packages/chef-server/spec/spec.opts0
-rw-r--r--packages/chef-server/spec/spec_helper.rb11
-rw-r--r--packages/chef-server/spec/views/nodes/delete.html.erb_spec.rb1
-rw-r--r--packages/chef-server/spec/views/nodes/edit.html.erb_spec.rb1
-rw-r--r--packages/chef-server/spec/views/nodes/index.html.erb_spec.rb1
-rw-r--r--packages/chef-server/spec/views/nodes/new.html.erb_spec.rb1
-rw-r--r--packages/chef-server/spec/views/nodes/show.html.erb_spec.rb1
56 files changed, 0 insertions, 14539 deletions
diff --git a/packages/chef-server/Rakefile b/packages/chef-server/Rakefile
deleted file mode 100644
index 8ca9181536..0000000000
--- a/packages/chef-server/Rakefile
+++ /dev/null
@@ -1,34 +0,0 @@
-require 'rubygems'
-Gem.clear_paths
-Gem.path.unshift(File.join(File.dirname(__FILE__), "gems"))
-
-require 'rake'
-require 'rake/rdoctask'
-require 'rake/testtask'
-require 'spec/rake/spectask'
-require 'fileutils'
-require 'merb-core'
-require 'rubigen'
-include FileUtils
-
-# Load the basic runtime dependencies; this will include
-# any plugins and therefore plugin rake tasks.
-init_env = ENV['MERB_ENV'] || 'rake'
-Merb.load_dependencies(:environment => init_env)
-
-# Get Merb plugins and dependencies
-Merb::Plugins.rakefiles.each { |r| require r }
-
-desc "start runner environment"
-task :merb_env do
- Merb.start_environment(:environment => init_env, :adapter => 'runner')
-end
-
-##############################################################################
-# ADD YOUR CUSTOM TASKS BELOW
-##############################################################################
-
-desc "Add new files to subversion"
-task :svn_add do
- system "svn status | grep '^\?' | sed -e 's/? *//' | sed -e 's/ /\ /g' | xargs svn add"
-end
diff --git a/packages/chef-server/app/controllers/application.rb b/packages/chef-server/app/controllers/application.rb
deleted file mode 100644
index 4a0d247306..0000000000
--- a/packages/chef-server/app/controllers/application.rb
+++ /dev/null
@@ -1,69 +0,0 @@
-class Application < Merb::Controller
-
- def fix_up_node_id
- if params.has_key?(:id)
- params[:id].gsub!(/_/, '.')
- end
- end
-
- def escape_node_id
- if params.has_key?(:id)
- params[:id].gsub(/_/, '.')
- end
- end
-
- def login_required
- if session[:openid]
- return session[:openid]
- else
- self.store_location
- throw(:halt, :access_denied)
- end
- end
-
- def authorized_node
- if session[:level] == :admin
- Chef::Log.debug("Authorized as Administrator")
- true
- elsif session[:level] == :node
- Chef::Log.debug("Authorized as node")
- if session[:node_name] == params[:id].gsub(/\./, '_')
- true
- else
- raise(
- Unauthorized,
- "You are not the correct node for this action: #{session[:node_name]} instead of #{params[:id]}"
- )
- end
- else
- Chef::Log.debug("Unauthorized")
- raise Unauthorized, "You are not allowed to take this action."
- end
- end
-
- # Store the URI of the current request in the session.
- #
- # We can return to this location by calling #redirect_back_or_default.
- def store_location
- session[:return_to] = request.uri
- end
-
- # Redirect to the URI stored by the most recent store_location call or
- # to the passed default.
- def redirect_back_or_default(default)
- loc = session[:return_to] || default
- session[:return_to] = nil
- redirect loc
- end
-
- def access_denied
- case content_type
- when :html
- store_location
- redirect url(:openid_consumer)
- else
- raise Unauthorized, "You must authenticate first!"
- end
- end
-
-end \ No newline at end of file
diff --git a/packages/chef-server/app/controllers/exceptions.rb b/packages/chef-server/app/controllers/exceptions.rb
deleted file mode 100644
index 7f72e57ad2..0000000000
--- a/packages/chef-server/app/controllers/exceptions.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-class Exceptions < Application
-
- provides :html, :json
-
- # handle NotFound exceptions (404)
- def not_found
- display params
- end
-
- # handle NotAcceptable exceptions (406)
- def not_acceptable
- display params
- end
-
- # handle BadRequest exceptions (400)
- def bad_request
- display params
- end
-
-end \ No newline at end of file
diff --git a/packages/chef-server/app/controllers/nodes.rb b/packages/chef-server/app/controllers/nodes.rb
deleted file mode 100644
index aa7273c47d..0000000000
--- a/packages/chef-server/app/controllers/nodes.rb
+++ /dev/null
@@ -1,74 +0,0 @@
-class Nodes < Application
-
- provides :html, :json
-
- before :fix_up_node_id
- before :login_required, :only => [ :create, :update, :destroy ]
- before :authorized_node, :only => [ :update, :destroy ]
-
- def index
- @node_list = Chef::Node.list
- display @node_list
- end
-
- def show
- begin
- @node = Chef::Node.load(params[:id])
- rescue Net::HTTPServerException => e
- raise NotFound, "Cannot load node #{params[:id]}"
- end
- display @node
- end
-
- def create
- @node = params.has_key?("inflated_object") ? params["inflated_object"] : nil
- if @node
- @status = 202
- @node.save
- display @node
- else
- raise BadRequest, "You must provide a Node to create"
- end
- end
-
- def update
- @node = params.has_key?("inflated_object") ? params["inflated_object"] : nil
- if @node
- @status = 202
- @node.save
- display @node
- else
- raise NotFound, "You must provide a Node to update"
- end
- end
-
- def destroy
- begin
- @node = Chef::Node.load(params[:id])
- rescue RuntimeError => e
- raise BadRequest, "Node #{params[:id]} does not exist to destroy!"
- end
- @status = 202
- @node.destroy
- if content_type == :html
- redirect url(:nodes)
- else
- display @node
- end
- end
-
- def compile
- # Grab a Chef::Compile object
- compile = Chef::Compile.new()
- compile.load_node(params[:id])
- compile.node.save
- compile.load_definitions
- compile.load_recipes
- @output = {
- :node => compile.node,
- :collection => compile.collection,
- }
- display @output
- end
-
-end
diff --git a/packages/chef-server/app/controllers/openid_consumer.rb b/packages/chef-server/app/controllers/openid_consumer.rb
deleted file mode 100644
index 1c8b76296c..0000000000
--- a/packages/chef-server/app/controllers/openid_consumer.rb
+++ /dev/null
@@ -1,99 +0,0 @@
-require 'pathname'
-
-require "openid"
-require 'openid/store/filesystem'
-
-class OpenidConsumer < Application
-
- provides :html, :json
-
- def index
- render
- end
-
- def start
- check_valid_openid_provider(params[:openid_identifier])
- begin
- oidreq = consumer.begin(params[:openid_identifier])
- rescue OpenID::OpenIDError => e
- raise BadRequest, "Discovery failed for #{params[:openid_identifier]}: #{e}"
- end
- return_to = absolute_url(:openid_consumer_complete)
- realm = absolute_url(:openid_consumer)
-
- if oidreq.send_redirect?(realm, return_to, params[:immediate])
- return redirect(oidreq.redirect_url(realm, return_to, params[:immediate]))
- else
- @form_text = oidreq.form_markup(realm, return_to, params[:immediate], {'id' => 'openid_form'})
- render
- end
- end
-
- def complete
- # FIXME - url_for some action is not necessarily the current URL.
- current_url = absolute_url(:openid_consumer_complete)
- parameters = params.reject{|k,v| k == "controller" || k == "action"}
- oidresp = consumer.complete(parameters, current_url)
- case oidresp.status
- when OpenID::Consumer::FAILURE
- if oidresp.display_identifier
- raise BadRequest, "Verification of #{oidresp.display_identifier} failed: #{oidresp.message}"
- else
- raise BadRequest, "Verification failed: #{oidresp.message}"
- end
- when OpenID::Consumer::SUCCESS
- session[:openid] = oidresp.identity_url
- if oidresp.display_identifier =~ /openid\/server\/node\/(.+)$/
- session[:level] = :node
- session[:node_name] = $1
- else
- session[:level] = :admin
- end
- redirect_back_or_default(absolute_url(:nodes))
- return "Verification of #{oidresp.display_identifier} succeeded."
- when OpenID::Consumer::SETUP_NEEDED
- return "Immediate request failed - Setup Needed"
- when OpenID::Consumer::CANCEL
- return "OpenID transaction cancelled."
- else
- end
- redirect absolute_url(:openid_consumer)
- end
-
- def logout
- session[:openid] = nil if session.has_key?(:openid)
- session[:level] = nil if session.has_key?(:level)
- session[:node_name] = nil if session.has_key?(:node_name)
- redirect url(:top)
- end
-
- private
-
- # Returns true if the openid is at a valid provider, based on whether :openid_providers is
- # defined. Raises an exception if it is not an allowed provider.
- def check_valid_openid_provider(openid)
- if Chef::Config[:openid_providers]
- fp = Chef::Config[:openid_providers].detect do |p|
- case openid
- when /^http:\/\/#{p}/, /^#{p}/
- true
- else
- false
- end
- end
- unless fp
- raise Unauthorized, "Sorry, #{openid} is not an allowed OpenID Provider."
- end
- end
- true
- end
-
- def consumer
- if @consumer.nil?
- dir = Pathname.new(Merb.root).join('db').join('cstore')
- store = OpenID::Store::Filesystem.new(dir)
- @consumer = OpenID::Consumer.new(session, store)
- end
- return @consumer
- end
-end
diff --git a/packages/chef-server/app/controllers/openid_register.rb b/packages/chef-server/app/controllers/openid_register.rb
deleted file mode 100644
index a6c30c95c5..0000000000
--- a/packages/chef-server/app/controllers/openid_register.rb
+++ /dev/null
@@ -1,74 +0,0 @@
-# Controller for handling the login, logout process for "users" of our
-# little server. Users have no password. This is just an example.
-
-require 'openid'
-
-class OpenidRegister < Application
-
- provides :html, :json
-
- before :fix_up_node_id
-
- def index
- @headers['X-XRDS-Location'] = absolute_url(:controller => "openid_server", :action => "idp_xrds")
- @registered_nodes = Chef::OpenIDRegistration.list(true)
- Chef::Log.debug(@registered_nodes.inspect)
- display @registered_nodes
- end
-
- def show
- begin
- @registered_node = Chef::OpenIDRegistration.load(params[:id])
- rescue Net::HTTPServerException => e
- if e.message =~ /^404/
- raise NotFound, "Cannot load node registration for #{params[:id]}"
- else
- raise e
- end
- end
- Merb.logger.debug(@registered_node.inspect)
- display @registered_node
- end
-
- def create
- params.has_key?(:id) or raise BadRequest, "You must provide an id to register"
- params.has_key?(:password) or raise BadRequest, "You must provide a password to register"
- if Chef::OpenIDRegistration.has_key?(params[:id])
- raise BadRequest, "You cannot re-register #{params[:id]}!"
- end
- @registered_node = Chef::OpenIDRegistration.new
- @registered_node.name = params[:id]
- @registered_node.set_password(params[:password])
- @registered_node.save
- display @registered_node
- end
-
- def update
- raise BadRequest, "You cannot update your registration -- delete #{params[:id]} and re-register"
- end
-
- def destroy
- begin
- r = Chef::OpenIDRegistration.load(params[:id])
- rescue Exception => e
- raise BadRequest, "Cannot find the registration for #{params[:id]}"
- end
- r.destroy
- if content_type == :html
- redirect url(:registrations)
- else
- display({ :message => "Deleted registration for #{params[:id]}"})
- end
- end
-
- def validate
- begin
- r = Chef::OpenIDRegistration.load(params[:id])
- rescue Exception => e
- raise BadRequest, "Cannot find the registration for #{params[:id]}"
- end
- r.validated = r.validated ? false : true
- r.save
- redirect url(:registrations)
- end
-end
diff --git a/packages/chef-server/app/controllers/openid_server.rb b/packages/chef-server/app/controllers/openid_server.rb
deleted file mode 100644
index 665af1fb6d..0000000000
--- a/packages/chef-server/app/controllers/openid_server.rb
+++ /dev/null
@@ -1,218 +0,0 @@
-require 'pathname'
-
-# load the openid library, first trying rubygems
-#begin
-# require "rubygems"
-# require_gem "ruby-openid", ">= 1.0"
-#rescue LoadError
-require "openid"
-require "openid/consumer/discovery"
-require 'openid/store/filesystem'
-require 'json'
-#end
-
-class OpenidServer < Application
-
- provides :html, :json
-
- include Merb::OpenidServerHelper
- include OpenID::Server
-
- layout nil
-
- before :fix_up_node_id
-
- def index
-
- oidreq = server.decode_request(params.reject{|k,v| k == "controller" || k == "action"})
-
- # no openid.mode was given
- unless oidreq
- return "This is the Chef OpenID server endpoint."
- end
-
- oidresp = nil
-
- if oidreq.kind_of?(CheckIDRequest)
- identity = oidreq.identity
-
- if oidresp
- nil
- elsif self.is_authorized(identity, oidreq.trust_root)
- oidresp = oidreq.answer(true, nil, identity)
- elsif oidreq.immediate
- server_url = url :openid_server
- oidresp = oidreq.answer(false, server_url)
- else
- if content_type != 'application/json'
- session[:last_oidreq] = oidreq
- response = { :action => url(:openid_server_decision) }
- return response.to_json
- else
- return show_decision_page(oidreq)
- end
- end
- else
- oidresp = server.handle_request(oidreq)
- end
-
- self.render_response(oidresp)
- end
-
- def show_decision_page(oidreq, message="Do you trust this site with your identity?")
- session[:last_oidreq] = oidreq
- @oidreq = oidreq
-
- if message
- session[:notice] = message
- end
-
- render :template => 'openid_server/decide'
- end
-
- def node_page
- unless Chef::OpenIDRegistration.has_key?(params[:id])
- raise NotFound, "Cannot find registration for #{params[:id]}"
- end
-
- # Yadis content-negotiation: we want to return the xrds if asked for.
- accept = request.env['HTTP_ACCEPT']
-
- # This is not technically correct, and should eventually be updated
- # to do real Accept header parsing and logic. Though I expect it will work
- # 99% of the time.
- if accept and accept.include?('application/xrds+xml')
- return node_xrds
- end
-
- # content negotiation failed, so just render the user page
- xrds_url = absolute_url(:openid_node_xrds, :id => params[:id])
- identity_page = <<EOS
-<html><head>
-<meta http-equiv="X-XRDS-Location" content="#{xrds_url}" />
-<link rel="openid.server" href="#{absolute_url(:openid_node, :id => params[:id])}" />
-</head><body><p>OpenID identity page for registration #{params[:id]}</p>
-</body></html>
-EOS
-
- # Also add the Yadis location header, so that they don't have
- # to parse the html unless absolutely necessary.
- @headers['X-XRDS-Location'] = xrds_url
- render identity_page
- end
-
- def node_xrds
- types = [
- OpenID::OPENID_2_0_TYPE,
- OpenID::OPENID_1_0_TYPE
- ]
-
- render_xrds(types)
- end
-
- def idp_xrds
- types = [
- OpenID::OPENID_IDP_2_0_TYPE,
- ]
-
- render_xrds(types)
- end
-
- def decision
- oidreq = session[:last_oidreq]
- session[:last_oidreq] = nil
-
- if params.has_key?(:cancel)
- Merb.logger.info("Cancelling OpenID Authentication")
- return(redirect(oidreq.cancel_url))
- else
- identity = oidreq.identity
- identity =~ /node\/(.+)$/
- openid_node = Chef::OpenIDRegistration.load($1)
- unless openid_node.validated
- raise Unauthorized, "This nodes registration has not been validated"
- end
- if openid_node.password == encrypt_password(openid_node.salt, params[:password])
- if session[:approvals]
- session[:approvals] << oidreq.trust_root
- else
- session[:approvals] = [oidreq.trust_root]
- end
- oidresp = oidreq.answer(true, nil, identity)
- return self.render_response(oidresp)
- else
- raise Unauthorized, "Invalid credentials"
- end
- end
- end
-
- protected
-
- def encrypt_password(salt, password)
- Digest::SHA1.hexdigest("--#{salt}--#{password}--")
- end
-
- def server
- if @server.nil?
- server_url = absolute_url(:openid_server)
- dir = Pathname.new(Merb.root).join('db').join('openid-store')
- store = OpenID::Store::Filesystem.new(dir)
- @server = Server.new(store, server_url)
- end
- return @server
- end
-
- def approved(trust_root)
- return false if session[:approvals].nil?
- return session[:approvals].member?(trust_root)
- end
-
- def is_authorized(identity_url, trust_root)
- return (session[:username] and (identity_url == url_for_user) and self.approved(trust_root))
- end
-
- def render_xrds(types)
- type_str = ""
-
- types.each { |uri|
- type_str += "<Type>#{uri}</Type>\n "
- }
-
- yadis = <<EOS
-<?xml version="1.0" encoding="UTF-8"?>
-<xrds:XRDS
- xmlns:xrds="xri://$xrds"
- xmlns="xri://$xrd*($v*2.0)">
- <XRD>
- <Service priority="0">
- #{type_str}
- <URI>#{absolute_url(:openid_server)}</URI>
- </Service>
- </XRD>
-</xrds:XRDS>
-EOS
-
- @headers['content-type'] = 'application/xrds+xml'
- render yadis
- end
-
- def render_response(oidresp)
- if oidresp.needs_signing
- signed_response = server.signatory.sign(oidresp)
- end
- web_response = server.encode_response(oidresp)
-
- case web_response.code
- when HTTP_OK
- @status = 200
- render web_response.body
- when HTTP_REDIRECT
- redirect web_response.headers['location']
- else
- @status = 400
- render web_response.body
- end
- end
-
-
-end
diff --git a/packages/chef-server/app/helpers/global_helpers.rb b/packages/chef-server/app/helpers/global_helpers.rb
deleted file mode 100644
index 1ef7ac9331..0000000000
--- a/packages/chef-server/app/helpers/global_helpers.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module Merb
- module GlobalHelpers
- # helpers defined here available to all views.
- def resource_collection(collection)
- html = "<ul>"
- collection.each do |resource|
- html << "<li><b>#{resource.class}</b></li>"
- end
- html << "</ul>"
- html
- end
-
- def node_escape(node)
- node.gsub(/\./, '_')
- end
- end
-end
diff --git a/packages/chef-server/app/helpers/nodes_helper.rb b/packages/chef-server/app/helpers/nodes_helper.rb
deleted file mode 100644
index 5e6c25c453..0000000000
--- a/packages/chef-server/app/helpers/nodes_helper.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-module Merb
- module NodesHelper
- def recipe_list(node)
- response = ""
- node.recipes.each do |recipe|
- response << "<li>#{recipe}</li>"
- end
- response
- end
-
- def attribute_list(node)
- response = ""
- node.each_attribute do |k,v|
- response << "<li><b>#{k}</b>: #{v}</li>"
- end
- response
- end
- end
-end \ No newline at end of file
diff --git a/packages/chef-server/app/helpers/openid_server_helpers.rb b/packages/chef-server/app/helpers/openid_server_helpers.rb
deleted file mode 100644
index 73be9cab27..0000000000
--- a/packages/chef-server/app/helpers/openid_server_helpers.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module Merb
- module OpenidServerHelper
-
- def url_for_user
- url(:openid_node, :username => session[:username])
- end
-
- end
-end
diff --git a/packages/chef-server/app/views/exceptions/bad_request.json.erb b/packages/chef-server/app/views/exceptions/bad_request.json.erb
deleted file mode 100644
index f266cf99b9..0000000000
--- a/packages/chef-server/app/views/exceptions/bad_request.json.erb
+++ /dev/null
@@ -1 +0,0 @@
-<%= { :error => params[:exception], :code => 400 }.to_json %> \ No newline at end of file
diff --git a/packages/chef-server/app/views/exceptions/internal_server_error.html.erb b/packages/chef-server/app/views/exceptions/internal_server_error.html.erb
deleted file mode 100644
index aadbfad350..0000000000
--- a/packages/chef-server/app/views/exceptions/internal_server_error.html.erb
+++ /dev/null
@@ -1,216 +0,0 @@
-<html>
-<head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title><%= @exception_name %></title>
- <style type="text/css" media="screen">
- body {
- font-family:arial;
- font-size:11px;
- }
- h1 {
- font-size:48px;
- letter-spacing:-4px;
- margin:0;
- line-height:36px;
- color:#333;
- }
- h1 sup {
- font-size: 0.5em;
- }
- h1 sup.error_500, h1 sup.error_400 {
- color:#990E05;
- }
- h1 sup.error_100, h1 sup.error_200 {
- color:#00BF10;
- }
- h1 sup.error_300 {
- /* pretty sure you cant 'see' status 300
- errors but if you could I think they
- would be blue */
- color:#1B2099;
- }
- h2 {
- font-size:36px;
- letter-spacing:-3px;
- margin:0;
- line-height:28px;
- color:#444;
- }
- a, a:visited {
- color:#00BF10;
- }
- .internalError {
- width:800px;
- margin:50px auto;
- }
- .header {
- border-bottom:10px solid #333;
- margin-bottom:1px;
- background-image: url("data:image/gif;base64,R0lGODlhAwADAIAAAP///8zMzCH5BAAAAAAALAAAAAADAAMAAAIEBHIJBQA7");
- padding:20px;
- }
- table.trace {
- width:100%;
- font-family:courier, monospace;
- letter-spacing:-1px;
- border-collapse: collapse;
- border-spacing:0;
- }
- table.trace tr td{
- padding:0;
- height:26px;
- font-size:13px;
- vertical-align:middle;
- }
- table.trace tr.file{
- border-top:2px solid #fff;
- background-color:#F3F3F3;
- }
- table.trace tr.source {
- background-color:#F8F8F8;
- display:none;
- }
- table.trace .open tr.source {
- display:table-row;
- }
- table.trace tr.file td.expand {
- width:23px;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAIAAABvSEP3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdVJREFUeNqMVL+TwUAYxaRIOlEhlZHGDAUzzOQ61+AqXMV1lJSU7q/QRqm8KFUcJTNn5qJkaPyoKKVz7y4mF8na5Kt29tt9+/Z97/u81+vVQ4r9frdarS6Xi7ETDIZisRjxMGPfmk4niNPpZE+xLAugbPaZ53nzvtfMBe/3+/3dbuehBrAKhZdUKkVAWa9Xsiybv0CPZDJZLr/qa5/BwgwRjYqOKIvFYjQa/aNommZh0Ww2K5UqzwfoQOPxaLPZ3FAmk0+7lplMpt1u53J5OpBOR0eZEE9wHJfP5zud93g88QhluwWbjW+5VOmKBgKBer3eaDTDYeGBQF8+x7rqIYoiPgixWJazpA6HA+MSxRArkUgMh0M409g8Ho8+9wYxxCqVSq1W26EDHGM2m4HOHQrEc38f/Yn7cLmlIRhBENzcx8cVRZnPZ/YUep2BWkjTIfA+PKVpZAXR5QxsjiqCKvGEqqp443w+0dvy17swqD0HB3S73V5PpkNg1qBqt8kwGCjmPkinM0QJbIoEa7U6UG6ToVgs4V9G2g0ESoP5Aoi7KYX5oCgf8IKbkvn9/mr1LRQKESamzgJy0g0tSZIuB3nuGqRU9Vv9C4sKkUhEkp4soxvxI8AAhWrrtXa3X8EAAAAASUVORK5CYII=);
- background-position:top left;
- background-repeat:no-repeat;
- }
- table.trace .open tr.file td.expand {
- width:19px;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAB1CAIAAAAqdO2mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXZJREFUeNrslK1ywkAUhcMOBomEOiSdqLxEBJX0NaijOsjyHGGmCGyQQYaiiiw4gktkcOmZbpsuuzQ/M5XnqJ2d3S/n3nM3rTzPLUP7/Tt0+pLcGQwG3W53OLyHzPMtjYL7q9UqSRLrD4E1Gj1orCvKYuFHUWTVkOM44/HjDcp8/lL4r6NerzeZPMm1KFw0QkDn83m5fP2lHA4fNQvRtNvtjsfDd0WzmSfb2e/fdTqdOvdh/HLJZLOn0+d2HJ+KRGzbdl23EpFlmed5cp2maRzHQq1lvQ5KMi6EUZBGfup6E1pTfd+vrGW7jbQ2C9hTt9BpqNyIWaAwAy6xg2eBz5iRC/NomiZhGN5sqmnkauo0BUGgVQoBjQ80oCACgNQdZHfTYBkF2mxCtWWAqunWpahxIDUt3QYUxIFQpJHyIWpXjinabKbbwItMHT+NyjchrP8QKaSQQgoppJBCCimkkEIKKaSQQgoppJBCCimkkEIKKaSo+hRgAEFD17X08O2NAAAAAElFTkSuQmCC);
- background-position:top left;
- background-repeat:no-repeat;
- }
- table.trace tr.source td.collapse {
- width:19px;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAB1CAIAAAAqdO2mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVxJREFUeNrs0zFygkAUBmBlUkgJHdABlQwVkVJKKUxBYWbkALTxMJwhltyDFkss03IF8pudIcwaDaDl/6pd2P327b7d+eHwMXs4lNkzggoVKlSoUKFChQoVKlSoUKFChQoVKlSoUKFChQqVEYqm6ft9+qiSJEkYho7jTlcw2fd9NOI4nq4gEdFwXXe1Cqco63VkWVbXRTqLhTpOwQRpF7quR1E0TgGhqvLKUFCyoQqG/rks3O6kZKW/eRFpevOCoGTXVTcMQ5EyxyDEkML1c5RzuZOICIyXqn7JBVez6282MWrx731HOv2qB8Hri2lamNk0DfpVVdV1Peodappmmua8bdvzuc7zfNprzrLMth1FnGh/X8MjCAIQv/cFz/+65PcDh7rbvYv2ZUfdj+PxsyzLgVl0hKwgTqeqKApx2LeOc7t98zyv/1FWOgvx9RPii23bmL9cetJ8Ed8CDAC6aFW8bCzFhwAAAABJRU5ErkJggg==);
- background-position:bottom left;
- background-repeat:no-repeat;
- background-color:#6F706F;
- }
- table.trace tr td.path {
- padding-left:10px;
- }
- table.trace tr td.code {
- padding-left:35px;
- white-space: pre;
- line-height:9px;
- padding-bottom:10px;
- }
- table.trace tr td.code em {
- font-weight:bold;
- color:#00BF10;
- }
- table.trace tr td.code a {
- width: 20px;
- float: left;
- }
- table.trace tr td.code .more {
- color:#666;
- }
- table.trace tr td.line {
- width:30px;
- text-align:right;
- padding-right:4px;
- }
- .footer {
- margin-top:5px;
- font-size:11px;
- color:#444;
- text-align:right;
- }
- </style>
-</head>
-<body>
- <div class="internalError">
-
- <div class="header">
- <h1><%= @exception_name %> <sup class="error_<%= @exception.class::STATUS %>"><%= @exception.class::STATUS %></sup></h1>
- <% if show_details = ::Merb::Config[:exception_details] -%>
- <h2><%= @exception.message %></h2>
- <% else -%>
- <h2>Sorry about that...</h2>
- <% end -%>
- <h3>Parameters</h3>
- <ul>
- <% params[:original_params].each do |param, value| %>
- <li><strong><%= param %>:</strong> <%= value.inspect %></li>
- <% end %>
- <%= "<li>None</li>" if params[:original_params].empty? %>
- </ul>
-
- <h3>Session</h3>
- <ul>
- <% params[:original_session].each do |param, value| %>
- <li><strong><%= param %>:</strong> <%= value.inspect %></li>
- <% end %>
- <%= "<li>None</li>" if params[:original_session].empty? %>
- </ul>
-
- <h3>Cookies</h3>
- <ul>
- <% params[:original_cookies].each do |param, value| %>
- <li><strong><%= param %>:</strong> <%= value.inspect %></li>
- <% end %>
- <%= "<li>None</li>" if params[:original_cookies].empty? %>
- </ul>
- </div>
-
- <% if show_details %>
- <table class="trace">
- <% @exception.backtrace.each_with_index do |line, index| %>
- <tbody class="close">
- <tr class="file">
- <td class="expand">
- </td>
- <td class="path">
- <%= (line.match(/^([^:]+)/)[1] rescue 'unknown').sub(/\/((opt|usr)\/local\/lib\/(ruby\/)?(gems\/)?(1.8\/)?(gems\/)?|.+\/app\/)/, '') %>
- <% unless line.match(/\.erb:/) %>
- in "<strong><%= line.match(/:in `(.+)'$/)[1] rescue '?' %></strong>"
- <% else %>
- (<strong>ERB Template</strong>)
- <% end %>
- </td>
- <td class="line">
- <a href="txmt://open?url=file://<%=file = (line.match(/^([^:]+)/)[1] rescue 'unknown')%>&amp;line=<%= lineno = line.match(/:([0-9]+):/)[1] rescue '?' %>"><%=lineno%></a>&nbsp;
- </td>
- </tr>
- <tr class="source">
- <td class="collapse">
- </td>
- <td class="code" colspan="2"><% (__caller_lines__(file, lineno, 5) rescue []).each do |llineno, lcode, lcurrent| %>
-<a href="txmt://open?url=file://<%=file%>&amp;line=<%=llineno%>"><%= llineno %></a><%='<em>' if llineno==lineno.to_i %><%= lcode.size > 90 ? CGI.escapeHTML(lcode[0..90])+'<span class="more">......</span>' : CGI.escapeHTML(lcode) %><%='</em>' if llineno==lineno.to_i %>
-<% end %>
-
-</td>
- </tr>
- </tbody>
- <% end %>
- </table>
- <script type="text/javascript" charset="utf-8">
- // swop the open & closed classes
- els = document.getElementsByTagName('td');
- for(i=0; i<els.length; i++){
- if(els[i].className=='expand' || els[i].className=='collapse'){
- els[i].onclick = function(e){
- tbody = this.parentNode.parentNode;
- if(tbody.className=='open'){
- tbody.className='closed';
- }else{
- tbody.className='open';
- }
- }
- }
- }
- </script>
- <% end %>
- <div class="footer">
- lots of love, from <a href="#">merb</a>
- </div>
- </div>
-</body>
-</html> \ No newline at end of file
diff --git a/packages/chef-server/app/views/exceptions/not_acceptable.html.erb b/packages/chef-server/app/views/exceptions/not_acceptable.html.erb
deleted file mode 100644
index f632712bb2..0000000000
--- a/packages/chef-server/app/views/exceptions/not_acceptable.html.erb
+++ /dev/null
@@ -1,63 +0,0 @@
-<div id="container">
- <div id="header-container">
- <img src="/images/merb.jpg" />
- <!-- <h1>Mongrel + Erb</h1> -->
- <h2>pocket rocket web framework</h2>
- <hr />
- </div>
-
- <div id="left-container">
- <h3>Exception:</h3>
- <p><%= params[:exception] %></p>
- </div>
-
- <div id="main-container">
- <h3>Why am I seeing this page?</h3>
- <p>Merb couldn't find an appropriate content_type to return,
- based on what you said was available via provides() and
- what the client requested.</p>
-
- <h3>How to add a mime-type</h3>
- <pre><code>
- Merb.add_mime_type :pdf, :to_pdf, %w[application/pdf], &quot;Content-Encoding&quot; =&gt; &quot;gzip&quot;
- </code></pre>
- <h3>What this means is:</h3>
- <ul>
- <li>Add a mime-type for :pdf</li>
- <li>Register the method for converting objects to PDF as <code>#to_pdf</code>.</li>
- <li>Register the incoming mime-type "Accept" header as <code>application/pdf</code>.</li>
- <li>Specify a new header for PDF types so it will set <code>Content-Encoding</code> to gzip.</li>
- </ul>
-
- <h3>You can then do:</h3>
- <pre><code>
- class Foo &lt; Application
- provides :pdf
- end
- </code></pre>
-
- <h3>Where can I find help?</h3>
- <p>If you have any questions or if you can't figure something out, please take a
- look at our <a href="http://merbivore.com/"> project page</a>,
- feel free to come chat at irc.freenode.net, channel #merb,
- or post to <a href="http://groups.google.com/group/merb">merb mailing list</a>
- on Google Groups.</p>
-
- <h3>What if I've found a bug?</h3>
- <p>If you want to file a bug or make your own contribution to Merb,
- feel free to register and create a ticket at our
- <a href="http://merb.lighthouseapp.com/">project development page</a>
- on Lighthouse.</p>
-
- <h3>How do I edit this page?</h3>
- <p>You can change what people see when this happens by editing <tt>app/views/exceptions/not_acceptable.html.erb</tt>.</p>
-
- </div>
-
- <div id="footer-container">
- <hr />
- <div class="left"></div>
- <div class="right">&copy; 2007 the merb dev team</div>
- <p>&nbsp;</p>
- </div>
-</div>
diff --git a/packages/chef-server/app/views/exceptions/not_found.html.erb b/packages/chef-server/app/views/exceptions/not_found.html.erb
deleted file mode 100644
index 388c72c31d..0000000000
--- a/packages/chef-server/app/views/exceptions/not_found.html.erb
+++ /dev/null
@@ -1,47 +0,0 @@
-<div id="container">
- <div id="header-container">
- <img src="/images/merb.jpg" />
- <!-- <h1>Mongrel + Erb</h1> -->
- <h2>pocket rocket web framework</h2>
- <hr />
- </div>
-
- <div id="left-container">
- <h3>Exception:</h3>
- <p><%= params[:exception] %></p>
- </div>
-
- <div id="main-container">
- <h3>Welcome to Merb!</h3>
- <p>Merb is a light-weight MVC framework written in Ruby. We hope you enjoy it.</p>
-
- <h3>Where can I find help?</h3>
- <p>If you have any questions or if you can't figure something out, please take a
- look at our <a href="http://merbivore.com/"> project page</a>,
- feel free to come chat at irc.freenode.net, channel #merb,
- or post to <a href="http://groups.google.com/group/merb">merb mailing list</a>
- on Google Groups.</p>
-
- <h3>What if I've found a bug?</h3>
- <p>If you want to file a bug or make your own contribution to Merb,
- feel free to register and create a ticket at our
- <a href="http://merb.lighthouseapp.com/">project development page</a>
- on Lighthouse.</p>
-
- <h3>How do I edit this page?</h3>
- <p>You're seeing this page because you need to edit the following files:
- <ul>
- <li>config/router.rb <strong><em>(recommended)</em></strong></li>
- <li>app/views/exceptions/not_found.html.erb <strong><em>(recommended)</em></strong></li>
- <li>app/views/layout/application.html.erb <strong><em>(change this layout)</em></strong></li>
- </ul>
- </p>
- </div>
-
- <div id="footer-container">
- <hr />
- <div class="left"></div>
- <div class="right">&copy; 2007 the merb dev team</div>
- <p>&nbsp;</p>
- </div>
-</div>
diff --git a/packages/chef-server/app/views/layout/application.html.haml b/packages/chef-server/app/views/layout/application.html.haml
deleted file mode 100644
index f04f299d2c..0000000000
--- a/packages/chef-server/app/views/layout/application.html.haml
+++ /dev/null
@@ -1,22 +0,0 @@
-!!! XML
-!!!
-%html
- %head
- %title Chef Server
- %meta{"http-equiv" => "content-type", :content => "text/html; charset=utf-8" }
- %link{:rel => "stylesheet", :href => "/stylesheets/master.css", :type => "text/css", :media => "screen", :charset => "utf-8" }
- %body
- .header
- %a{:href => url(:nodes) } Nodes
- |
- %a{:href => url(:registrations)} Registrations
- - if session[:openid]
- |
- %a{:href => url(:openid_consumer_logout)}= "Logout #{h session[:openid]}"
- = "(#{session[:level].to_s})"
- - else
- |
- %a{:href => url(:openid_consumer)} Login
- = catch_content :for_layout
-
- \ No newline at end of file
diff --git a/packages/chef-server/app/views/nodes/_action.html.haml b/packages/chef-server/app/views/nodes/_action.html.haml
deleted file mode 100644
index a809a6d70c..0000000000
--- a/packages/chef-server/app/views/nodes/_action.html.haml
+++ /dev/null
@@ -1,13 +0,0 @@
-%table
- - actions.each do |action, resource_hash|
- %tr
- %td.action_name= action.to_s
- %td.action_resources
- %table
- - resource_hash.keys.sort{ |a,b| a.to_s <=> b.to_s }.each do |rk|
- %tr
- %td.action_when= rk.to_s
- %td
- - resource_hash[rk].each do |resource|
- = partial(:resource, :resource => resource)
- \ No newline at end of file
diff --git a/packages/chef-server/app/views/nodes/_node.html.haml b/packages/chef-server/app/views/nodes/_node.html.haml
deleted file mode 100644
index 7dce36488f..0000000000
--- a/packages/chef-server/app/views/nodes/_node.html.haml
+++ /dev/null
@@ -1,11 +0,0 @@
-.node
- %h1
- = "Node #{h node.name}"
- %h2 Actions
- %a{ :href => url(:compile_node, { :id => node_escape(node.name) }) } Compile Node
- %h2 Recipes
- %ol
- = recipe_list(node)
- %h2 Attributes
- %ol
- = attribute_list(node)
diff --git a/packages/chef-server/app/views/nodes/_resource.html.haml b/packages/chef-server/app/views/nodes/_resource.html.haml
deleted file mode 100644
index 7b9776b816..0000000000
--- a/packages/chef-server/app/views/nodes/_resource.html.haml
+++ /dev/null
@@ -1,22 +0,0 @@
-.resource
- %h3= "#{h resource.to_s} (#{resource.class})"
- %table
- - resource.instance_variables.sort.each do |v|
- - attr_name = v.gsub(/\@/, "")
- - unless attr_name == "collection"
- %tr.attr_group
- %td.attr_name
- = "#{h attr_name}"
- %td.attr_value
- - value = resource.instance_variable_get(v)
- - if value.kind_of?(String)
- = "#{h value}"
- - elsif value.kind_of?(Array)
- = "#{h value.join(", ")}"
- - elsif value.kind_of?(Symbol)
- = "#{h value.to_s}"
- - elsif attr_name == "actions"
- = partial(:action, :actions => value)
- - else
- = "#{h value.inspect}"
-
diff --git a/packages/chef-server/app/views/nodes/compile.html.haml b/packages/chef-server/app/views/nodes/compile.html.haml
deleted file mode 100644
index 5656447ea8..0000000000
--- a/packages/chef-server/app/views/nodes/compile.html.haml
+++ /dev/null
@@ -1,5 +0,0 @@
-= partial(:node, :node => @output[:node])
-.resource_collection
- %h1 Resource Collection
- - @output[:collection].each do |resource|
- = partial(:resource, :resource => resource)
diff --git a/packages/chef-server/app/views/nodes/index.html.haml b/packages/chef-server/app/views/nodes/index.html.haml
deleted file mode 100644
index 667e1c7317..0000000000
--- a/packages/chef-server/app/views/nodes/index.html.haml
+++ /dev/null
@@ -1,9 +0,0 @@
-%h1 Node List
-- @node_list.each do |node|
- .node
- %a{ :href => url(:node, { :id => node.gsub(/\./, "_") }) }
- = node
- %form{ :method => "post", :action => url(:node, { :id => node.gsub(/\./, "_") })}
- %input{ :type => "hidden", :name => "_method", :value => "delete" }
- %input{ :type => "submit", :name => "Delete", :value => "Delete" }
- \ No newline at end of file
diff --git a/packages/chef-server/app/views/nodes/show.html.haml b/packages/chef-server/app/views/nodes/show.html.haml
deleted file mode 100644
index 94708af6d3..0000000000
--- a/packages/chef-server/app/views/nodes/show.html.haml
+++ /dev/null
@@ -1 +0,0 @@
-= partial(:node, :node => @node) \ No newline at end of file
diff --git a/packages/chef-server/app/views/openid_consumer/index.html.haml b/packages/chef-server/app/views/openid_consumer/index.html.haml
deleted file mode 100644
index 576ef8d787..0000000000
--- a/packages/chef-server/app/views/openid_consumer/index.html.haml
+++ /dev/null
@@ -1,25 +0,0 @@
-%h1 OpenID Relying Party
--if session[:alert]
- .alert= h session[:alert]
--if session[:error]
- .error= h session[:error]
--if session[:success]
- .success= h session[:success]
-#verify-form
- %form{ :method => "get", "accept-charset" => "UTF-8", :action => url(:openid_consumer_start) }
- Identifier:
- %input.openid{ :type => "text", :name => "openid_identifier" }/
- %input{ :type => "submit", :value => "Verify"}/
- %br
- %input#immediate{ :name => "immediate", :type => "checkbox" }/
- %label{:for => "immediate"} Use immediate mode
- %br
- %input#immediate{ :name => "use_sreg", :type => "checkbox" }/
- %label{:for => "use_sreg"} Request registration data
- %br
- %input#immediate{ :name => "use_pape", :type => "checkbox" }/
- %label{:for => "use_pape"} Request phishing-resistent auth policy
- %br
- %input#immediate{ :name => "force_post", :type => "checkbox" }/
- %label{:for => "force_post"} Force the transaction to POST
- %br
diff --git a/packages/chef-server/app/views/openid_consumer/start.html.haml b/packages/chef-server/app/views/openid_consumer/start.html.haml
deleted file mode 100644
index 75ed9a9257..0000000000
--- a/packages/chef-server/app/views/openid_consumer/start.html.haml
+++ /dev/null
@@ -1,4 +0,0 @@
-<%= @form_text %>
-<script type="text/javascript">
-document.getElementById('openid_form').submit();
-</script> \ No newline at end of file
diff --git a/packages/chef-server/app/views/openid_login/index.html.haml b/packages/chef-server/app/views/openid_login/index.html.haml
deleted file mode 100644
index 17ae69017a..0000000000
--- a/packages/chef-server/app/views/openid_login/index.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-%h1 Login
-#login-form
- %form{ :method => "get", :action => url(:openid_login_submit) }
- %input{ :type => "text", :name => "username" }/
- %input{ :type => "submit", :value => "Log In"}/
- \ No newline at end of file
diff --git a/packages/chef-server/app/views/openid_register/index.html.haml b/packages/chef-server/app/views/openid_register/index.html.haml
deleted file mode 100644
index fe4798c59d..0000000000
--- a/packages/chef-server/app/views/openid_register/index.html.haml
+++ /dev/null
@@ -1,15 +0,0 @@
-%h1 Registered OpenID Nodes List
-%table
-- @registered_nodes.each do |node|
- %tr
- %td
- %a{ :href => url(:registration, { :id => node.name }) }
- = h node.name
- %td
- - if session[:level] == :admin
- %form{ :method => "post", :action => url(:validate_registration, { :id => node.name })}
- - submit_name = node.validated ? "Invalidate" : "Validate"
- %input{ :type => "submit", :name => submit_name, :value => submit_name }
- %form{ :method => "post", :action => url(:registration, { :id => node.name })}
- %input{ :type => "hidden", :name => "_method", :value => "delete" }
- %input{ :type => "submit", :name => "Delete", :value => "Delete" }
diff --git a/packages/chef-server/app/views/openid_register/show.html.haml b/packages/chef-server/app/views/openid_register/show.html.haml
deleted file mode 100644
index cfd38e8963..0000000000
--- a/packages/chef-server/app/views/openid_register/show.html.haml
+++ /dev/null
@@ -1,5 +0,0 @@
-%h1= "Registered OpenID Node #{@registered_node.name}"
-%ol
- %li
- %a{ :href => url(:openid_node , { :id => @registered_node.name.gsub(/\./, "_") }) } OpenID URL
- %li= "Validated: #{@registered_node.validated}"
diff --git a/packages/chef-server/app/views/openid_server/decide.html.haml b/packages/chef-server/app/views/openid_server/decide.html.haml
deleted file mode 100644
index 8082a5068d..0000000000
--- a/packages/chef-server/app/views/openid_server/decide.html.haml
+++ /dev/null
@@ -1,27 +0,0 @@
-%form{:method => "post", :action => url(:openid_server_decision)}
- %table
- %tr
- %td Site:
- %td= @oidreq.trust_root
- - if @oidreq.id_select
- %tr
- %td{:colspan => "2"}
- You entered the server identifier at the relying party.
- You will need to send an identifier of your choosing.
- Enter a username and password below.
- %tr
- %td Identity to send:
- %td
- %input{:type => "text", :name => "id_to_send", :size => "25"}
- - else
- %tr
- %td Identity:
- %td= @oidreq.identity
- %tr
- %td
- %label{:for => "password"} Password:
- %td
- %input{:type => "password", :name => "password"}
- %input{:type => "submit", :name => "submit", :value => "Authenticate"}
- %input{:type => "submit", :name => "cancel", :value => "Cancel"}
-
diff --git a/packages/chef-server/autotest/discover.rb b/packages/chef-server/autotest/discover.rb
deleted file mode 100644
index fddd1269c4..0000000000
--- a/packages/chef-server/autotest/discover.rb
+++ /dev/null
@@ -1 +0,0 @@
-Autotest.add_discovery { "merb" } \ No newline at end of file
diff --git a/packages/chef-server/autotest/merb.rb b/packages/chef-server/autotest/merb.rb
deleted file mode 100644
index e9d51af585..0000000000
--- a/packages/chef-server/autotest/merb.rb
+++ /dev/null
@@ -1,149 +0,0 @@
-# Adapted from Autotest::Rails
-require 'autotest'
-
-class Autotest::Merb < Autotest
-
- # +model_tests_dir+:: the directory to find model-centric tests
- # +controller_tests_dir+:: the directory to find controller-centric tests
- # +view_tests_dir+:: the directory to find view-centric tests
- # +fixtures_dir+:: the directory to find fixtures in
- attr_accessor :model_tests_dir, :controller_tests_dir, :view_tests_dir, :fixtures_dir
-
- def initialize # :nodoc:
- super
-
- initialize_test_layout
-
- # Ignore any happenings in these directories
- add_exception %r%^\./(?:doc|log|public|tmp)%
-
- # Ignore any mappings that Autotest may have already set up
- clear_mappings
-
- # Any changes to a file in the root of the 'lib' directory will run any
- # model test with a corresponding name.
- add_mapping %r%^lib\/.*\.rb% do |filename, _|
- files_matching Regexp.new(["^#{model_test_for(filename)}$"])
- end
-
- # Any changes to a fixture will run corresponding view, controller and
- # model tests
- add_mapping %r%^#{fixtures_dir}/(.*)s.yml% do |_, m|
- [
- model_test_for(m[1]),
- controller_test_for(m[1]),
- view_test_for(m[1])
- ]
- end
-
- # Any change to a test or test will cause it to be run
- add_mapping %r%^test/(unit|models|integration|controllers|views|functional)/.*rb$% do |filename, _|
- filename
- end
-
- # Any change to a model will cause it's corresponding test to be run
- add_mapping %r%^app/models/(.*)\.rb$% do |_, m|
- model_test_for(m[1])
- end
-
- # Any change to the global helper will result in all view and controller
- # tests being run
- add_mapping %r%^app/helpers/global_helpers.rb% do
- files_matching %r%^test/(views|functional|controllers)/.*_test\.rb$%
- end
-
- # Any change to a helper will run it's corresponding view and controller
- # tests, unless the helper is the global helper. Changes to the global
- # helper run all view and controller tests.
- add_mapping %r%^app/helpers/(.*)_helper(s)?.rb% do |_, m|
- if m[1] == "global" then
- files_matching %r%^test/(views|functional|controllers)/.*_test\.rb$%
- else
- [
- view_test_for(m[1]),
- controller_test_for(m[1])
- ]
- end
- end
-
- # Changes to views result in their corresponding view and controller test
- # being run
- add_mapping %r%^app/views/(.*)/% do |_, m|
- [
- view_test_for(m[1]),
- controller_test_for(m[1])
- ]
- end
-
- # Changes to a controller result in its corresponding test being run. If
- # the controller is the exception or application controller, all
- # controller tests are run.
- add_mapping %r%^app/controllers/(.*)\.rb$% do |_, m|
- if ["application", "exception"].include?(m[1])
- files_matching %r%^test/(controllers|views|functional)/.*_test\.rb$%
- else
- controller_test_for(m[1])
- end
- end
-
- # If a change is made to the router, run all controller and view tests
- add_mapping %r%^config/router.rb$% do # FIX
- files_matching %r%^test/(controllers|views|functional)/.*_test\.rb$%
- end
-
- # If any of the major files governing the environment are altered, run
- # everything
- add_mapping %r%^test/test_helper.rb|config/(init|rack|environments/test.rb|database.yml)% do # FIX
- files_matching %r%^test/(unit|models|controllers|views|functional)/.*_test\.rb$%
- end
- end
-
-private
-
- # Determines the paths we can expect tests or specs to reside, as well as
- # corresponding fixtures.
- def initialize_test_layout
- self.model_tests_dir = "test/unit"
- self.controller_tests_dir = "test/functional"
- self.view_tests_dir = "test/views"
- self.fixtures_dir = "test/fixtures"
- end
-
- # Given a filename and the test type, this method will return the
- # corresponding test's or spec's name.
- #
- # ==== Arguments
- # +filename+<String>:: the file name of the model, view, or controller
- # +kind_of_test+<Symbol>:: the type of test we that we should run
- #
- # ==== Returns
- # String:: the name of the corresponding test or spec
- #
- # ==== Example
- #
- # > test_for("user", :model)
- # => "user_test.rb"
- # > test_for("login", :controller)
- # => "login_controller_test.rb"
- # > test_for("form", :view)
- # => "form_view_spec.rb" # If you're running a RSpec-like suite
- def test_for(filename, kind_of_test) # :nodoc:
- name = [filename]
- name << kind_of_test.to_s if kind_of_test == :view
- name << "test"
- return name.join("_") + ".rb"
- end
-
- def model_test_for(filename)
- [model_tests_dir, test_for(filename, :model)].join("/")
- end
-
- def controller_test_for(filename)
- [controller_tests_dir, test_for(filename, :controller)].join("/")
- end
-
- def view_test_for(filename)
- [view_tests_dir, test_for(filename, :view)].join("/")
- end
-
-end \ No newline at end of file
diff --git a/packages/chef-server/autotest/merb_rspec.rb b/packages/chef-server/autotest/merb_rspec.rb
deleted file mode 100644
index 9ff1f7263b..0000000000
--- a/packages/chef-server/autotest/merb_rspec.rb
+++ /dev/null
@@ -1,223 +0,0 @@
-# Adapted from Autotest::Rails, RSpec's autotest class, as well as merb-core's.
-require 'autotest'
-
-class RspecCommandError < StandardError; end
-
-class Autotest::MerbRspec < Autotest
-
- # +model_tests_dir+:: the directory to find model-centric tests
- # +controller_tests_dir+:: the directory to find controller-centric tests
- # +view_tests_dir+:: the directory to find view-centric tests
- # +fixtures_dir+:: the directory to find fixtures in
- attr_accessor :model_tests_dir, :controller_tests_dir, :view_tests_dir, :fixtures_dir
-
- def initialize # :nodoc:
- super
-
- initialize_test_layout
-
- # Ignore any happenings in these directories
- add_exception %r%^\./(?:doc|log|public|tmp)%
-
- # Ignore any mappings that Autotest may have already set up
- clear_mappings
-
- # Any changes to a file in the root of the 'lib' directory will run any
- # model test with a corresponding name.
- add_mapping %r%^lib\/.*\.rb% do |filename, _|
- files_matching %r%#{model_test_for(filename)}$%
- end
-
- add_mapping %r%^spec/(spec_helper|shared/.*)\.rb$% do
- files_matching %r%^spec/.*_spec\.rb$%
- end
-
- # Any changes to a fixture will run corresponding view, controller and
- # model tests
- add_mapping %r%^#{fixtures_dir}/(.*)s.yml% do |_, m|
- [
- model_test_for(m[1]),
- controller_test_for(m[1]),
- view_test_for(m[1])
- ]
- end
-
- # Any change to a test or spec will cause it to be run
- add_mapping %r%^spec/(unit|models|integration|controllers|views|functional)/.*rb$% do |filename, _|
- filename
- end
-
- # Any change to a model will cause it's corresponding test to be run
- add_mapping %r%^app/models/(.*)\.rb$% do |_, m|
- model_test_for(m[1])
- end
-
- # Any change to the global helper will result in all view and controller
- # tests being run
- add_mapping %r%^app/helpers/global_helpers.rb% do
- files_matching %r%^spec/(views|functional|controllers)/.*_spec\.rb$%
- end
-
- # Any change to a helper will run it's corresponding view and controller
- # tests, unless the helper is the global helper. Changes to the global
- # helper run all view and controller tests.
- add_mapping %r%^app/helpers/(.*)_helper(s)?.rb% do |_, m|
- if m[1] == "global" then
- files_matching %r%^spec/(views|functional|controllers)/.*_spec\.rb$%
- else
- [
- view_test_for(m[1]),
- controller_test_for(m[1])
- ]
- end
- end
-
- # Changes to views result in their corresponding view and controller test
- # being run
- add_mapping %r%^app/views/(.*)/% do |_, m|
- [
- view_test_for(m[1]),
- controller_test_for(m[1])
- ]
- end
-
- # Changes to a controller result in its corresponding test being run. If
- # the controller is the exception or application controller, all
- # controller tests are run.
- add_mapping %r%^app/controllers/(.*)\.rb$% do |_, m|
- if ["application", "exception"].include?(m[1])
- files_matching %r%^spec/(controllers|views|functional)/.*_spec\.rb$%
- else
- controller_test_for(m[1])
- end
- end
-
- # If a change is made to the router, run all controller and view tests
- add_mapping %r%^config/router.rb$% do # FIX
- files_matching %r%^spec/(controllers|views|functional)/.*_spec\.rb$%
- end
-
- # If any of the major files governing the environment are altered, run
- # everything
- add_mapping %r%^spec/spec_helper.rb|config/(init|rack|environments/test.rb|database.yml)% do # FIX
- files_matching %r%^spec/(unit|models|controllers|views|functional)/.*_spec\.rb$%
- end
- end
-
- def failed_results(results)
- results.scan(/^\d+\)\n(?:\e\[\d*m)?(?:.*?Error in )?'([^\n]*)'(?: FAILED)?(?:\e\[\d*m)?\n(.*?)\n\n/m)
- end
-
- def handle_results(results)
- @failures = failed_results(results)
- @files_to_test = consolidate_failures @failures
- unless $TESTING
- if @files_to_test.empty?
- hook :green
- else
- hook :red
- end
- end
- @tainted = true unless @files_to_test.empty?
- end
-
- def consolidate_failures(failed)
- filters = Hash.new { |h,k| h[k] = [] }
- failed.each do |spec, failed_trace|
- find_files.keys.select { |f| f =~ /spec\// }.each do |f|
- if failed_trace =~ Regexp.new(f)
- filters[f] << spec
- break
- end
- end
- end
- filters
- end
-
- def make_test_cmd(files_to_test)
- [
- ruby,
- "-S",
- spec_command,
- add_options_if_present,
- files_to_test.keys.flatten.join(' ')
- ].join(" ")
- end
-
- def add_options_if_present
- File.exist?("spec/spec.opts") ? "-O spec/spec.opts " : ""
- end
-
- # Finds the proper spec command to use. Precendence is set in the
- # lazily-evaluated method spec_commands. Alias + Override that in
- # ~/.autotest to provide a different spec command then the default
- # paths provided.
- def spec_command(separator=File::ALT_SEPARATOR)
- unless defined? @spec_command then
- @spec_command = spec_commands.find { |cmd| File.exists? cmd }
-
- raise RspecCommandError, "No spec command could be found!" unless @spec_command
-
- @spec_command.gsub!(File::SEPARATOR, separator) if separator
- end
- @spec_command
- end
-
- # Autotest will look for spec commands in the following
- # locations, in this order:
- #
- # * default spec bin/loader installed in Rubygems
- # * any spec command found in PATH
- def spec_commands
- [ File.join(Config::CONFIG['bindir'], 'spec'), 'spec' ]
- end
-
-private
-
- # Determines the paths we can expect tests or specs to reside, as well as
- # corresponding fixtures.
- def initialize_test_layout
- self.model_tests_dir = "spec/models"
- self.controller_tests_dir = "spec/controllers"
- self.view_tests_dir = "spec/views"
- self.fixtures_dir = "spec/fixtures"
- end
-
- # Given a filename and the test type, this method will return the
- # corresponding test's or spec's name.
- #
- # ==== Arguments
- # +filename+<String>:: the file name of the model, view, or controller
- # +kind_of_test+<Symbol>:: the type of test we that we should run
- #
- # ==== Returns
- # String:: the name of the corresponding test or spec
- #
- # ==== Example
- #
- # > test_for("user", :model)
- # => "user_test.rb"
- # > test_for("login", :controller)
- # => "login_controller_test.rb"
- # > test_for("form", :view)
- # => "form_view_spec.rb" # If you're running a RSpec-like suite
- def test_for(filename, kind_of_test) # :nodoc:
- name = [filename]
- name << kind_of_test.to_s if kind_of_test == :view
- name << "spec"
- return name.join("_") + ".rb"
- end
-
- def model_test_for(filename)
- [model_tests_dir, test_for(filename, :model)].join("/")
- end
-
- def controller_test_for(filename)
- [controller_tests_dir, test_for(filename, :controller)].join("/")
- end
-
- def view_test_for(filename)
- [view_tests_dir, test_for(filename, :view)].join("/")
- end
-
-end
diff --git a/packages/chef-server/config/chef-server.rb b/packages/chef-server/config/chef-server.rb
deleted file mode 100644
index 3e14b07c0f..0000000000
--- a/packages/chef-server/config/chef-server.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-#
-# Example Chef Solo Config
-
-cookbook_path File.join(File.dirname(__FILE__), "..", "..", "..", "examples", "config", "cookbooks")
-node_path File.join(File.dirname(__FILE__), "..", "..", "..", "examples", "config", "nodes")
-file_store_path File.join(File.dirname(__FILE__), "..", "..", "..", "examples", "store")
-log_level :debug
-
-openid_providers [ "localhost:4001", "openid.hjksolutions.com" ]
-
-Chef::Log::Formatter.show_time = false
diff --git a/packages/chef-server/config/environments/development.rb b/packages/chef-server/config/environments/development.rb
deleted file mode 100644
index 69ed60266d..0000000000
--- a/packages/chef-server/config/environments/development.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-Merb.logger.info("Loaded DEVELOPMENT Environment...")
-Merb::Config.use { |c|
- c[:exception_details] = true
- c[:reload_classes] = true
- c[:reload_time] = 0.5
- c[:log_auto_flush ] = true
-} \ No newline at end of file
diff --git a/packages/chef-server/config/environments/production.rb b/packages/chef-server/config/environments/production.rb
deleted file mode 100644
index e389e6feeb..0000000000
--- a/packages/chef-server/config/environments/production.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-Merb.logger.info("Loaded PRODUCTION Environment...")
-Merb::Config.use { |c|
- c[:exception_details] = false
- c[:reload_classes] = false
- c[:log_level] = :error
- c[:log_file] = Merb.log_path + "/production.log"
-} \ No newline at end of file
diff --git a/packages/chef-server/config/environments/rake.rb b/packages/chef-server/config/environments/rake.rb
deleted file mode 100644
index 098d3e4a9e..0000000000
--- a/packages/chef-server/config/environments/rake.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-Merb.logger.info("Loaded RAKE Environment...")
-Merb::Config.use { |c|
- c[:exception_details] = true
- c[:reload_classes] = false
- c[:log_auto_flush ] = true
- c[:log_file] = Merb.log_path / 'merb_rake.log'
-}
diff --git a/packages/chef-server/config/environments/test.rb b/packages/chef-server/config/environments/test.rb
deleted file mode 100644
index 6865fb4a4e..0000000000
--- a/packages/chef-server/config/environments/test.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-Merb.logger.info("Loaded TEST Environment...")
-Merb::Config.use { |c|
- c[:testing] = true
- c[:exception_details] = true
- c[:log_auto_flush ] = true
-} \ No newline at end of file
diff --git a/packages/chef-server/config/init.rb b/packages/chef-server/config/init.rb
deleted file mode 100644
index 258690f7c8..0000000000
--- a/packages/chef-server/config/init.rb
+++ /dev/null
@@ -1,157 +0,0 @@
-#
-# ==== Structure of Merb initializer
-#
-# 1. Load paths.
-# 2. Dependencies configuration.
-# 3. Libraries (ORM, testing tool, etc) you use.
-# 4. Application-specific configuration.
-
-#
-# ==== Set up load paths
-#
-
-# Make the app's "gems" directory a place where gems are loaded from.
-# Note that gems directory must have a structure RubyGems uses for
-# directories under which gems are kept.
-#
-# To conveniently set it up use gem install -i <merb_app_root/gems>
-# when installing gems. This will set up the structure under /gems
-# automagically.
-#
-# An example:
-#
-# You want to bundle ActiveRecord and ActiveSupport with your Merb
-# application to be deployment environment independent. To do so,
-# install gems into merb_app_root/gems directory like this:
-#
-# gem install -i ~/dev/merbapp/gems activesupport-post-2.0.2gem activerecord-post-2.0.2.gem
-#
-# Since RubyGems will search merb_app_root/gems for dependencies, order
-# in statement above is important: we need to install ActiveSupport which
-# ActiveRecord depends on first.
-#
-# Remember that bundling of dependencies as gems with your application
-# makes it independent of the environment it runs in and is a very
-# good, encouraged practice to follow.
-Gem.clear_paths
-Gem.path.unshift(Merb.root / "gems")
-
-# If you want modules and classes from libraries organized like
-# merbapp/lib/magicwand/lib/magicwand.rb to autoload,
-# uncomment this.
-Merb.push_path(:lib, File.join(Merb.root, "..", "..", "lib"))
-# Merb.push_path(:lib, Merb.root / "lib") # uses **/*.rb as path glob.
-
-# ==== Dependencies
-
-# These are some examples of how you might specify dependencies.
-# Dependencies load is delayed to one of later Merb app
-# boot stages. It may be important when
-# later part of your configuration relies on libraries specified
-# here.
-#
-# dependencies "RedCloth", "merb_helpers"
-# OR
-# dependency "RedCloth", "> 3.0"
-# OR
-# dependencies "RedCloth" => "> 3.0", "ruby-aes-cext" => "= 1.0"
-Merb::BootLoader.after_app_loads do
- # Add dependencies here that must load after the application loads:
- Chef::Config.from_file(File.join(Merb.root, "config", "chef-server.rb"))
- Chef::Queue.connect
-
- # dependency "magic_admin" # this gem uses the app's model classes
-end
-
-#
-# ==== Set up your ORM of choice
-#
-
-# Merb doesn't come with database support by default. You need
-# an ORM plugin. Install one, and uncomment one of the following lines,
-# if you need a database.
-
-# Uncomment for DataMapper ORM
-# use_orm :datamapper
-
-# Uncomment for ActiveRecord ORM
-# use_orm :activerecord
-
-# Uncomment for Sequel ORM
-# use_orm :sequel
-
-require 'merb-haml'
-
-#
-# ==== Pick what you test with
-#
-
-# This defines which test framework the generators will use
-# rspec is turned on by default
-#
-# Note that you need to install the merb_rspec if you want to ue
-# rspec and merb_test_unit if you want to use test_unit.
-# merb_rspec is installed by default if you did gem install
-# merb.
-#
-# use_test :test_unit
-use_test :rspec
-
-
-#
-# ==== Set up your basic configuration
-#
-Merb::Config.use do |c|
- # Sets up a custom session id key, if you want to piggyback sessions of other applications
- # with the cookie session store. If not specified, defaults to '_session_id'.
- c[:session_id_key] = '_chef_server_session_id'
- c[:session_secret_key] = '0992ea491c30ec76c98367c1ca53b18c1e7c5b30'
- c[:session_store] = 'cookie'
-end
-
-
-# ==== Tune your inflector
-
-# To fine tune your inflector use word, singular_word and plural_word
-# methods of Language::English::Inflector module metaclass.
-#
-# Here we define erratum/errata exception case:
-#
-# Language::English::Inflector.word "erratum", "errata"
-#
-# In case singular and plural forms are the same omit
-# second argument on call:
-#
-# Language::English::Inflector.word 'information'
-#
-# You can also define general, singularization and pluralization
-# rules:
-#
-# Once the following rule is defined:
-# Language::English::Inflector.rule 'y', 'ies'
-#
-# You can see the following results:
-# irb> "fly".plural
-# => flies
-# irb> "cry".plural
-# => cries
-#
-# Example for singularization rule:
-#
-# Language::English::Inflector.singular_rule 'o', 'oes'
-#
-# Works like this:
-# irb> "heroes".singular
-# => hero
-#
-# Example of pluralization rule:
-# Language::English::Inflector.singular_rule 'fe', 'ves'
-#
-# And the result is:
-# irb> "wife".plural
-# => wives
-
-begin
- require File.join(File.dirname(__FILE__), '..', 'lib', 'authenticated_system/authenticated_dependencies')
-rescue LoadError
-end
diff --git a/packages/chef-server/config/rack.rb b/packages/chef-server/config/rack.rb
deleted file mode 100644
index f00cf55eee..0000000000
--- a/packages/chef-server/config/rack.rb
+++ /dev/null
@@ -1 +0,0 @@
-run Merb::Rack::Application.new \ No newline at end of file
diff --git a/packages/chef-server/config/router.rb b/packages/chef-server/config/router.rb
deleted file mode 100644
index 776cf99f42..0000000000
--- a/packages/chef-server/config/router.rb
+++ /dev/null
@@ -1,60 +0,0 @@
-# Merb::Router is the request routing mapper for the merb framework.
-#
-# You can route a specific URL to a controller / action pair:
-#
-# r.match("/contact").
-# to(:controller => "info", :action => "contact")
-#
-# You can define placeholder parts of the url with the :symbol notation. These
-# placeholders will be available in the params hash of your controllers. For example:
-#
-# r.match("/books/:book_id/:action").
-# to(:controller => "books")
-#
-# Or, use placeholders in the "to" results for more complicated routing, e.g.:
-#
-# r.match("/admin/:module/:controller/:action/:id").
-# to(:controller => ":module/:controller")
-#
-# You can also use regular expressions, deferred routes, and many other options.
-# See merb/specs/merb/router.rb for a fairly complete usage sample.
-
-Merb.logger.info("Compiling routes...")
-Merb::Router.prepare do |r|
- # RESTful routes
- # r.resources :posts
-
- # This is the default route for /:controller/:action/:id
- # This is fine for most cases. If you're heavily using resource-based
- # routes, you may want to comment/remove this line to prevent
- # clients from calling your create or destroy actions with a GET
-
- r.resources :nodes
- r.resources :nodes, :member => { :compile => :get }
-
- #r.resources :openid do |res|
- # res.resources :register, :controller => "openid_register"
- # res.resources :server, :controller => "openid_server"
- #end
-
- r.resources :registrations, :controller => "openid_register"
- r.resources :registrations, :controller => "openid_register", :member => { :validate => :post }
- r.match("/openid/server").to(:controller => "openid_server", :action => "index").name(:openid_server)
- r.match("/openid/server/server/xrds").
- to(:controller => "openid_server", :action => 'idp_xrds').name(:openid_server_xrds)
- r.match("/openid/server/node/:id").
- to(:controller => "openid_server", :action => 'node_page').name(:openid_node)
- r.match('/openid/server/node/:id/xrds').
- to(:controller => 'openid_server', :action => 'node_xrds').name(:openid_node_xrds)
- r.match('/openid/server/decision').to(:controller => "openid_server", :action => "decision").name(:openid_server_decision)
- r.match('/openid/consumer').to(:controller => 'openid_consumer', :action => 'index').name(:openid_consumer)
- r.match('/openid/consumer/start').to(:controller => 'openid_consumer', :action => 'start').name(:openid_consumer_start)
- r.match('/openid/consumer/complete').to(:controller => 'openid_consumer', :action => 'complete').name(:openid_consumer_complete)
- r.match('/openid/consumer/logout').to(:controller => 'openid_consumer', :action => 'logout').name(:openid_consumer_logout)
-
- #r.default_routes
-
- # Change this for your home page to be available at /
- r.match('/').to(:controller => 'nodes', :action =>'index').name(:top)
-end
-
diff --git a/packages/chef-server/log/merb_test.log b/packages/chef-server/log/merb_test.log
deleted file mode 100644
index e7e4a11f95..0000000000
--- a/packages/chef-server/log/merb_test.log
+++ /dev/null
@@ -1,12232 +0,0 @@
-Wed, 14 May 2008 07:07:04 GMT ~ info ~ Logfile created
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.024802, :before_filters_time=>0.000222}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000116, :after_filters_time=>8.0e-06, :action_time=>0.001278}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001212}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>6.0e-06, :action_time=>0.00118}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001156, :before_filters_time=>0.000111, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001213, :before_filters_time=>0.000115, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001327, :before_filters_time=>0.000108, :after_filters_time=>9.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001202, :before_filters_time=>0.0001, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001337, :before_filters_time=>0.000105, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001207, :before_filters_time=>0.000113, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001222, :before_filters_time=>0.000116, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001195, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001367, :before_filters_time=>0.000136, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001185, :before_filters_time=>0.000114, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001277, :before_filters_time=>0.000109, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001215, :before_filters_time=>0.000102, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001223, :before_filters_time=>0.0001, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001335, :before_filters_time=>0.000125, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000315, :before_filters_time=>9.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001247, :before_filters_time=>0.000113, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001186, :before_filters_time=>0.000112, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001332, :before_filters_time=>0.000122, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00119, :before_filters_time=>0.000112, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001199, :before_filters_time=>0.000117, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001225, :before_filters_time=>0.000112, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001935, :before_filters_time=>0.000149, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001171, :before_filters_time=>0.00011, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001188, :before_filters_time=>0.000109, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001332, :before_filters_time=>0.000122, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001238, :before_filters_time=>0.000103, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>6.0e-06, :action_time=>0.001177}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001187, :before_filters_time=>0.0001, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001288, :before_filters_time=>0.000102, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001323, :before_filters_time=>0.000105, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001226, :before_filters_time=>0.000101, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0012, :before_filters_time=>0.000102, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001198, :before_filters_time=>0.000102, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.002015, :before_filters_time=>0.00016, :after_filters_time=>1.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001281, :before_filters_time=>0.000103, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001184, :before_filters_time=>0.000101, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001205, :before_filters_time=>0.000105, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001178, :before_filters_time=>0.000101, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001178, :before_filters_time=>0.000113, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001215, :before_filters_time=>0.000111}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001171, :before_filters_time=>0.000113, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000101, :after_filters_time=>7.0e-06, :action_time=>0.001185}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000125, :after_filters_time=>6.0e-06, :action_time=>0.001767}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000119, :after_filters_time=>7.0e-06, :action_time=>0.001533}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000118, :after_filters_time=>6.0e-06, :action_time=>0.001226}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.0001, :after_filters_time=>1.4e-05, :action_time=>0.001227}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000104, :after_filters_time=>6.0e-06, :action_time=>0.001262}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000101, :after_filters_time=>7.0e-06, :action_time=>0.001199}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.0001, :after_filters_time=>6.0e-06, :action_time=>0.001208}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000101, :after_filters_time=>8.0e-06, :action_time=>0.001227}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.00027}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.0001, :after_filters_time=>7.0e-06, :action_time=>0.001197}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000272}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06, :action_time=>0.00121}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000228}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000101, :after_filters_time=>7.0e-06, :action_time=>0.001255}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000229}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.001216}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000225}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.0001, :after_filters_time=>8.0e-06, :action_time=>0.001248}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000231}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001303, :before_filters_time=>0.000124, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000237, :before_filters_time=>8.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001202, :before_filters_time=>0.000114, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001214, :before_filters_time=>0.000119, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001192, :before_filters_time=>0.000124, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001212, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0012, :before_filters_time=>0.000112, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001227, :before_filters_time=>0.000112, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001221, :before_filters_time=>0.000116, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000229, :before_filters_time=>8.5e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001209, :before_filters_time=>0.00011, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001209, :before_filters_time=>0.000112, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000105, :after_filters_time=>8.0e-06, :action_time=>0.001221}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000235}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000108, :after_filters_time=>7.0e-06, :action_time=>0.001178}
- ~ {:before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00023}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>8.0e-06, :action_time=>0.001185}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000115, :after_filters_time=>8.0e-06, :action_time=>0.001284}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000247}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001235}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000227}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000114, :after_filters_time=>7.0e-06, :action_time=>0.001223}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000224}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>1.6e-05, :action_time=>0.001176}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000219}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001192, :before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>7.9e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001274, :before_filters_time=>0.000103, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001568, :before_filters_time=>0.000104, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001172, :before_filters_time=>0.000109, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000115, :after_filters_time=>7.0e-06, :action_time=>0.001284}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000226}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001216, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000135, :after_filters_time=>3.1e-05, :action_time=>0.001259}
- ~ {:before_filters_time=>8.5e-05, :after_filters_time=>7.0e-06, :action_time=>0.000265}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001182}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>7.0e-06, :action_time=>0.000218}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001199}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>7.0e-06, :action_time=>0.000221}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001249}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000221}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001254}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000224}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001203}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000228}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001376}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.00023}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000147, :after_filters_time=>7.0e-06, :action_time=>0.001268}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.00024}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001266, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001196}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000222}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00121, :before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000222, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001221, :before_filters_time=>9.8e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001193, :before_filters_time=>9.9e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001255, :before_filters_time=>0.000101, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001264, :before_filters_time=>0.000102, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000111, :after_filters_time=>7.0e-06, :action_time=>0.001203}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000221}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000118, :after_filters_time=>7.0e-06, :action_time=>0.001258}
- ~ {:before_filters_time=>0.000109, :after_filters_time=>5.0e-06, :action_time=>0.0003}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000116, :after_filters_time=>8.0e-06, :action_time=>0.001274}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>3.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000111, :after_filters_time=>7.0e-06, :action_time=>0.001246}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000227}
- ~ {:before_filters_time=>4.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001194, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000233, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>3.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001205}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ {:before_filters_time=>4.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000266}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.001201}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000225}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00012, :after_filters_time=>8.0e-06, :action_time=>0.001336}
- ~ {:before_filters_time=>9.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000247}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000241}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000111, :after_filters_time=>8.0e-06, :action_time=>0.001231}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000225}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.000236}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001177, :before_filters_time=>0.000111, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001252, :before_filters_time=>0.000114, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000246, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001292, :before_filters_time=>0.000122, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.00024, :before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000255, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001226, :before_filters_time=>0.000111, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000265, :before_filters_time=>4.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001282, :before_filters_time=>0.00013}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001285, :before_filters_time=>0.00012, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000255, :before_filters_time=>4.2e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001235, :before_filters_time=>0.000101, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>7.9e-05, :after_filters_time=>1.3e-05}
- ~ {:action_time=>0.000267, :before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001199, :before_filters_time=>0.000111, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00024, :before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001185, :before_filters_time=>0.00011, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000257, :before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001231, :before_filters_time=>0.000155}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001278, :before_filters_time=>0.000113, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00027, :before_filters_time=>3.6e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>7.0e-06, :action_time=>0.001199}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000227}
- ~ {:before_filters_time=>3.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000279}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000112, :after_filters_time=>8.0e-06, :action_time=>0.001195}
- ~ {:before_filters_time=>7.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.000225}
- ~ {:before_filters_time=>6.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000312}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.001214}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000219}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06, :action_time=>0.001192}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000221}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.000265}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.000269}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000102, :after_filters_time=>8.0e-06, :action_time=>0.001252}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000227}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000238}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.0001, :after_filters_time=>7.0e-06, :action_time=>0.001207}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000232}
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000276}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.00024}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000109, :after_filters_time=>8.0e-06, :action_time=>0.001177}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000245}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000114, :after_filters_time=>8.0e-06, :action_time=>0.001234}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000222}
- ~ {:before_filters_time=>3.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000252}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001758, :before_filters_time=>0.000118, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000254, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001186, :before_filters_time=>0.000109, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00025, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000268, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00116, :before_filters_time=>0.000108, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>8.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000286, :before_filters_time=>3.6e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001203, :before_filters_time=>0.000111, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000222, :before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001198, :before_filters_time=>0.00011, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00026, :before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000248, :before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001295, :before_filters_time=>0.000119, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000255, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001195, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000257, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001188, :before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000231, :before_filters_time=>7.5e-05, :after_filters_time=>1.1e-05}
- ~ {:action_time=>0.000243, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>4.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000733, :before_filters_time=>8.0e-05, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001185, :before_filters_time=>0.000109, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>3.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000305, :before_filters_time=>3.8e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000275, :before_filters_time=>9.5e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001518, :before_filters_time=>0.000106, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000235, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000253, :before_filters_time=>4.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00029, :before_filters_time=>8.3e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001196, :before_filters_time=>9.7e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000232, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000239, :before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000244, :before_filters_time=>3.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000273, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001297, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000263, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000277, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001205, :before_filters_time=>0.000115, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00024, :before_filters_time=>3.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00026, :before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001142, :before_filters_time=>0.000108, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000219, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000236, :before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000237, :before_filters_time=>3.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000256, :before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001212, :before_filters_time=>0.0001, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000231, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000252, :before_filters_time=>3.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000298, :before_filters_time=>9.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001177, :before_filters_time=>9.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000232, :before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000235, :before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00028, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001227, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000297, :before_filters_time=>4.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001737, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000248, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.003685, :before_filters_time=>0.000128}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000285, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000279, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001232, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000836, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001256, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>7.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001297, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000103, :after_filters_time=>8.0e-06, :action_time=>0.001298}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.00024}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>3.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.00027}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000274}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000108, :after_filters_time=>7.0e-06, :action_time=>0.001191}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000244}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000267}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000246}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.00012, :after_filters_time=>7.0e-06, :action_time=>0.001284}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000227}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000241}
- ~ {:before_filters_time=>3.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000254}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000282}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000254}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.00026}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000113, :after_filters_time=>7.0e-06, :action_time=>0.001194}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000236}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000241}
- ~ {:before_filters_time=>3.9e-05, :after_filters_time=>7.0e-06, :action_time=>0.000276}
- ~ {:before_filters_time=>9.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000313}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000252}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00026}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000109, :after_filters_time=>7.0e-06, :action_time=>0.001191}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000222}
- ~ {:before_filters_time=>3.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000242}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000289}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000252}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000159, :after_filters_time=>1.1e-05, :action_time=>0.002025}
- ~ {:before_filters_time=>0.00011, :after_filters_time=>7.0e-06, :action_time=>0.000301}
- ~ {:before_filters_time=>3.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.000291}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000253}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000252}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000115, :after_filters_time=>7.0e-06, :action_time=>0.001266}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000365}
- ~ {:before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00027}
- ~ {:before_filters_time=>3.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.000285}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000289}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000442}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000255}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>0.000113, :after_filters_time=>7.0e-06, :action_time=>0.001244}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000224}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000241}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000251}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000261}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001857, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000287, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000263, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001777, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000298, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000287, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000298, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000321, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001351, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000319, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001232, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000266, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000267, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000262, :before_filters_time=>4.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000352, :before_filters_time=>0.000125}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001807, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000287, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000266, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001117, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000238, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00158, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000283, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000257, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000406, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>8.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001139, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000596, :before_filters_time=>0.000429}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000335, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000241, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00024, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00112, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000231, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000241, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001114, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000202, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001112, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000202, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000226, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.0011, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000531, :before_filters_time=>0.00038}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000289, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00029, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001183, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001116, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001113, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000223, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>0.000126}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001243, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000207, :before_filters_time=>5.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.00024, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000644, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001188, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00055, :before_filters_time=>0.000256}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000299, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.003352, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000505, :before_filters_time=>0.000148}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000305, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000481, :before_filters_time=>0.000293}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001141, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001138, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000326, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001124, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000425, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000332, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000299, :before_filters_time=>7.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001104, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000216, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000215, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000299, :before_filters_time=>0.000123}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000314, :before_filters_time=>8.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001176, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000307, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000289, :before_filters_time=>5.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001123, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000214, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000267, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001112, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001104, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000278, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000277, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001095, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000207, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000798, :before_filters_time=>0.000595}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001128, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000212, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00038, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000804, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001125, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000223, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000265, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001141, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000209, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000306, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>9.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00111, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000202, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>2.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000236, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001106, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000558, :before_filters_time=>0.000188}
- ~ {:after_filters_time=>1.9e-05, :action_time=>0.000613, :before_filters_time=>0.00021}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001117, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00027, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000238, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000321, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000326, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002271, :before_filters_time=>0.00056}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>0.000239}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001143, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000193, :before_filters_time=>4.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000271, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000293, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000292, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001268, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000311, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000223, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000311, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001177, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001129, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000212, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0003, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001155, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000425, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000322, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00029, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00034, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001115, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>0.000265}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000284, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001231, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000247, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001168, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000199, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001156, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001801, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000353, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00048, :before_filters_time=>0.000146}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000371, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000357, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000317, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000318, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000302, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001141, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001121, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001229, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000278, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001191, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000298, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00114, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00024, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000269, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001117, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000209, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001109, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>3.4e-05, :action_time=>0.000308, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001108, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001124, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000293, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000238, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001137, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000205, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000285, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001102, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000264, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001115, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000263, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001126, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000203, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000224, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000305, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000284, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001199, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000298, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001117, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>2.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000306, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000275, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001138, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00028, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>8.0e-06, :action_time=>0.001124}
- ~ {:before_filters_time=>5.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000248}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000219}
- ~ {:before_filters_time=>4.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000237}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.000291}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000253}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000276}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.4e-05, :after_filters_time=>7.0e-06, :action_time=>0.001116}
- ~ {:before_filters_time=>5.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000208}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000219}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000243}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>7.0e-06, :action_time=>0.000278}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.00027}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000272}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000243}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.001208}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000224}
- ~ {:before_filters_time=>0.000103, :after_filters_time=>6.0e-06, :action_time=>0.000295}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000257}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.00027}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000275}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001128, :before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000198, :before_filters_time=>5.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000269, :before_filters_time=>8.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000285, :before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000269, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001216, :before_filters_time=>6.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000215, :before_filters_time=>6.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>8.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000216, :before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000236, :before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000251, :before_filters_time=>4.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000273, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000282, :before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001216, :before_filters_time=>6.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000391, :before_filters_time=>5.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00024, :before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000235, :before_filters_time=>3.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000307, :before_filters_time=>8.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000248, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000268, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00119, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000552, :before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000272, :before_filters_time=>8.6e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000304, :before_filters_time=>0.000145, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000255, :before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00029, :before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00028, :before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000301, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000265, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.001172}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000203}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>6.0e-06, :action_time=>0.000288}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00024}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000284}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000245}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000265}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000245}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>7.0e-06, :action_time=>0.001131}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.0004}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000297}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000218}
- ~ {:before_filters_time=>2.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000234}
- ~ {:before_filters_time=>3.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000285}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000248}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000267}
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>0.000298, :after_filters_time=>6.0e-06, :action_time=>0.000469}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>7.0e-06, :action_time=>0.00123}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000895}
- ~ {:before_filters_time=>0.000102, :after_filters_time=>6.0e-06, :action_time=>0.000285}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>8.0e-06, :action_time=>0.000307}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.000255}
- ~ {:before_filters_time=>3.5e-05, :after_filters_time=>2.1e-05, :action_time=>0.000273}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000309}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000266}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00113}
- ~ {:before_filters_time=>5.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000434}
- ~ {:before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000275}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>4.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000275}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000248}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>1.1e-05, :action_time=>0.000267}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000258}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000242}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>7.0e-06, :action_time=>0.001114}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000215}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ {:before_filters_time=>3.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000318}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.000244}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000275}
- ~ {:before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>1.3e-05, :action_time=>0.000271}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000258}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000244}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06, :action_time=>0.001255}
- ~ {:before_filters_time=>5.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000237}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.000287}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000213}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000241}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000242}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001117}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000213}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>1.4e-05, :action_time=>0.000231}
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.00029}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.00024}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000253}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000243}
- ~ {:before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000369}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001151, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000264, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>3.5e-05, :action_time=>0.000866, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00039, :before_filters_time=>9.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001116}
- ~ {:before_filters_time=>5.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000202}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.000282}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000227}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000233}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000251}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000309}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000253}
- ~ {:before_filters_time=>8.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000369}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.001282}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000289}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000299}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000237}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000243}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000246}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000267}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000251}
- ~ {:before_filters_time=>9.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000379}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.001122}
- ~ {:before_filters_time=>5.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000228}
- ~ {:before_filters_time=>9.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000277}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000249}
- ~ {:before_filters_time=>4.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000258}
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000294}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.00031}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.00025}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001111}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000248}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000287}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000225}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>1.2e-05, :action_time=>0.000245}
- ~ {:before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000257}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000281}
- ~ {:before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000277}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.0003}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>9.0e-06, :action_time=>0.000449}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001126, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000263, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>0.00016}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00029, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000273, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000558, :before_filters_time=>0.000105}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001135}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000207}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000279}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000238}
- ~ {:before_filters_time=>3.6e-05, :after_filters_time=>1.3e-05, :action_time=>0.000269}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000252}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000267}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000263}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000248}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>8.0e-06, :action_time=>0.000418}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001133, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000291, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000277, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000385, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001132, :before_filters_time=>6.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>5.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000218, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>3.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000239, :before_filters_time=>3.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000307, :before_filters_time=>0.000116, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000396, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001122, :before_filters_time=>6.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000203, :before_filters_time=>5.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000276, :before_filters_time=>9.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000217, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000257, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000236, :before_filters_time=>3.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000269, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000288, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000387, :before_filters_time=>9.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000361, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00124, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000226, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000297, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0003, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000298, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000304, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000389, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00036, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00169, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000304, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000232, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000283, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000412, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000323, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00039, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001158, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000205, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000289, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000383, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000372, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001115, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000209, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000299, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000231, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000323, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000372, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001183, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000263, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000415, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001154}
- ~ {:before_filters_time=>6.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000202}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000277}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000222}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.00024}
- ~ {:before_filters_time=>3.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000236}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000273}
- ~ {:before_filters_time=>0.000118, :after_filters_time=>5.0e-06, :action_time=>0.000303}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000278}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000361}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000424}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000395}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.001231}
- ~ {:before_filters_time=>6.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000228}
- ~ {:before_filters_time=>0.000183, :after_filters_time=>6.0e-06, :action_time=>0.000383}
- ~ {:before_filters_time=>0.000122, :after_filters_time=>6.0e-06, :action_time=>0.000276}
- ~ {:before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>3.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>0.000133, :after_filters_time=>6.0e-06, :action_time=>0.000335}
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.00026}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000243}
- ~ {:before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000381}
- ~ {:before_filters_time=>0.000109, :after_filters_time=>6.0e-06, :action_time=>0.000426}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000373}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001118, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000304, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000456, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001201, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000213, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000292, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000294, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000367, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001257, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000382, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000226, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000241, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00029, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000466, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000399, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000507, :before_filters_time=>0.000157}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001533, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000323, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000316, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000277, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000408, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000373, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000371, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001125, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000226, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000387, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000352, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001185, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000211, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000291, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000317, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00038, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000344, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.003335, :before_filters_time=>0.0029}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001122, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000277, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000387, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000383, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00035, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000385, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001118, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000305, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000224, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000246, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000261, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000322, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000313, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001377, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000408, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000381, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002472, :before_filters_time=>0.000182}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000429, :before_filters_time=>9.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001145, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000377, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000357, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000348, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000348, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001161, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000209, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000226, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000414, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000408, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000338, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000344, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000341, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001163, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000284, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000263, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0003, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000255, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000266, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000367, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000381, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000374, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000407, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001455, :before_filters_time=>0.000308}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001142, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000283, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000332, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000457, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000355, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000366, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000382, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000385, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00039, :before_filters_time=>8.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001143, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000276, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000254, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000469, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000374, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000398, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000401, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00128, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000213, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000296, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000288, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000422, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000413, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000341, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000353, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001113, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000255, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000386, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00037, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000362, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00035, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000397, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000373, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001216, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000286, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000315, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000385, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000447, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000362, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00035, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001104, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000287, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000372, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000354, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000343, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000345, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001135, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000211, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000336, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000425, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000357, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000349, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000355, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001183, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000403, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000382, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00034, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00035, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001254, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000324, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000427, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000379, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000362, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000356, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001133, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00024, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000434, :before_filters_time=>0.000218}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000393, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000389, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000351, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000439, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001131, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00023, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000405, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000359, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000346, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000348, :before_filters_time=>7.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001129, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000201, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000285, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000411, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000354, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000352, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001168, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000228, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000403, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00038, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000351, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001183, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000321, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000413, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000357, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001136, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000387, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000381, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000361, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000345, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00035, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00122, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000196, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000223, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000327, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000378, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000392, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000709, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000529, :before_filters_time=>0.000228}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000358, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001189, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000353, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.0019, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000385, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000349, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000519, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000355, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001223, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000411, :before_filters_time=>0.000254}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000392, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000927, :before_filters_time=>0.000495}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000452, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000349, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000341, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001217, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000216, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00027, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000452, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000381, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000373, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000346, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.0012, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000304, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000372, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000346, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00037, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000339, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001169, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000207, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000265, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00025, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000289, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000342, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001129, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000524, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000316, :before_filters_time=>0.000123}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000283, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000274, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000327, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000309, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000423, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000255, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000491, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000379, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000406, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000438, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001207, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>2.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000283, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000376, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000384, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000339, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000357, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000378, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001152, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.00027, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000266, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000455, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000485, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000427, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000401, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001127, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000275, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000459, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000479, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000463, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00041, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00416, :before_filters_time=>0.003791}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001634, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000203, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000298, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00045, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000467, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000777, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000396, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000408, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00063, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001229, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000232, :before_filters_time=>2.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000294, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000459, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000474, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000379, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000439, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001172, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000237, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000461, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000529, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000391, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.00119, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000299, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000287, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000436, :before_filters_time=>0.000244}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000451, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000471, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000413, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00042, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000427, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000384, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001149, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000232, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00031, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000307, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000382, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000475, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000443, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002583, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000424, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000496, :before_filters_time=>0.000175}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000386, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001183, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000217, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000231, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000241, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000289, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000448, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000623, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001126, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000258, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000461, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>0.000132, :action_time=>0.000591, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000507, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00113, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000293, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000337, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000303, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000256, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000474, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000466, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000534, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000398, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000386, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001131, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000422, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000299, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000291, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000259, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000522, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000524, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000434, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.003198, :before_filters_time=>0.001016}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00043, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>9.5e-05, :action_time=>0.000504, :before_filters_time=>9.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001114, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000212, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000746, :before_filters_time=>0.000437}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.000433, :before_filters_time=>0.000194}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000287, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000268, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000507, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>8.5e-05, :action_time=>0.001961, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000547, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000392, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000414, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001132, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000497, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000462, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000461, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000413, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000394, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001286, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000212, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000463, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000466, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.004664, :before_filters_time=>0.001598}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000427, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000438, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000494, :before_filters_time=>0.0001}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001125, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000213, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000493, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000435, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00037, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000372, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000379, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.004774, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001218, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000201, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000289, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000458, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000509, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000438, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000506, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00047, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001147, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00021, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000473, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000463, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000456, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000405, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000382, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001119, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000205, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000301, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000469, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000474, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000459, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000394, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001144, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000202, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000305, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000457, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000437, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000449, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000403, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00039, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001225, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001048, :before_filters_time=>0.000869}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000229, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000289, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0003, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000287, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000493, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000447, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000559, :before_filters_time=>0.000148}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000491, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000424, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001593, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000229, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000273, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00035, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000458, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000446, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000384, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.004238, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001133, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00024, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00029, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001906, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00047, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000457, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000424, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000403, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000424, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000443, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001259, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000419, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000283, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>4.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000291, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000313, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000653, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000467, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001269, :before_filters_time=>0.000869}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00043, :before_filters_time=>9.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001144, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000212, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000428, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>2.0e-05, :action_time=>0.001209, :before_filters_time=>0.000354}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000406, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000626, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001313, :before_filters_time=>0.000124}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000541, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000455, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000621, :before_filters_time=>0.000141}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000568, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00045, :before_filters_time=>9.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001323, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000314, :before_filters_time=>4.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00031, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000502, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000517, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001523, :before_filters_time=>0.00031}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001887, :before_filters_time=>0.000743}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000467, :before_filters_time=>9.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001126, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000293, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000238, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000477, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000571, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000474, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000385, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001117, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000293, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>4.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>3.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000469, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000554, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000391, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>8.5e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001139, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000215, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000298, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00046, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00052, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00042, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000381, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001711, :before_filters_time=>0.000633}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000454, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001236, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000421, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000464, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000457, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000453, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000409, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.004895, :before_filters_time=>0.000728}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001131, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000239, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000302, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000296, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000508, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00044, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000397, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000406, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001115, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>5.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00027, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000469, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00047, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000396, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000378, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000411, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000846, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0011, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000202, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000554, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000466, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00046, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000383, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.003397, :before_filters_time=>0.002858}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001156, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000211, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00029, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000462, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000405, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000421, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000402, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000401, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001223, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000209, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000286, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000232, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000292, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000411, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000293, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000337, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000298, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000458, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000435, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.002253, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000436, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>8.3e-05, :action_time=>0.003806, :before_filters_time=>0.000844}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000416, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001132, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000195, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>2.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001011, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000452, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000439, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>8.3e-05, :action_time=>0.001067, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>0.001002, :action_time=>0.004015, :before_filters_time=>0.000874}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001275, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242999999999993, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000292, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000266, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000509, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000445, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000398, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00043, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001144, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0003, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000292, :before_filters_time=>4.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000378, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000752, :before_filters_time=>0.000413}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000377, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000352, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001131, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000212, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000617, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.000254, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000391, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000788, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000368, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000407, :before_filters_time=>0.000125}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>0.0001}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001179, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000325, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000272, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000484, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000355, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000346, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000354, :before_filters_time=>8.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001422, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000259, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000277, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000273, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000372, :before_filters_time=>0.000136}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000377, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000373, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000354, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000476, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000356, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001266, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000406, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000228, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000307, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000342, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002406, :before_filters_time=>8.9e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001132, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000489, :before_filters_time=>0.000331}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000284, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000439, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000437, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000371, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>0.000105, :action_time=>0.000668, :before_filters_time=>0.000216}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000359, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001119, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000418, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000252, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000368, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000432, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00258, :before_filters_time=>0.000128}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000371, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000356, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00035, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001103, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000809, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000292, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000382, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000374, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000356, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000339, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000367, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001226, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000335, :before_filters_time=>0.000158}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000247, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>0.000132}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000403, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000368, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000371, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000362, :before_filters_time=>8.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00112, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000392, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000416, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000358, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000346, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000381, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001161, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000228, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000275, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00031, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000391, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000383, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000723, :before_filters_time=>0.000187}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000555, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000367, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001122, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0003, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.000259, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000292, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000385, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000385, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000417, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00035, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.002708, :before_filters_time=>0.000197}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000335, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000461, :before_filters_time=>0.000159}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000391, :before_filters_time=>0.000145}
- ~ {:after_filters_time=>8.9e-05, :action_time=>0.000491, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00034, :before_filters_time=>4.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00034, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000338, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000315, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000361, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000332, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000362, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000352, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000333, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `connect' for #<Merb::Router::Behavior:0x1830bfc> - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:37
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/views/nodes/../../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/views/nodes/new.html.erb_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `connect' for #<Merb::Router::Behavior:0x183105c> - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:37
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/views/nodes/../../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/views/nodes/new.html.erb_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `connect' for #<Merb::Router::Behavior:0x1830e7c> - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:38
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/views/nodes/../../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/views/nodes/new.html.erb_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001121, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000301, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000405, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000404, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00033, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000351, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000368, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.0011, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000251, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000357, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000355, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000324, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001294, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000298, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000213, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000256, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000236, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00049, :before_filters_time=>0.000141}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000437, :before_filters_time=>0.000123}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000382, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000421, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001103, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000203, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000337, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000249, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000283, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000256, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00033, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000348, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000356, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001273, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000198, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000252, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000588, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001921, :before_filters_time=>0.00158}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000379, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000327, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001182, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000319, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000361, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002333, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002026, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000276, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000286, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.006438, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000429, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000411, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000412, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001645, :before_filters_time=>0.001293}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00037, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001276, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000271, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000254, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000239, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>0.000139}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00024, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00037, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000357, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000333, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000331, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000345, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00035, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001118, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000194, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000241, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000381, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000331, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000326, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000341, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000336, :before_filters_time=>8.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00124, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000215, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000308, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00039, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000373, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000377, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000335, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000322, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001179, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000216, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000231, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>0.000185}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000399, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000358, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000342, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000326, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000331, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001127, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000198, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000307, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00024, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000256, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000288, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000306, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000386, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00087, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000333, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001102, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000348, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000257, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000362, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000353, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000327, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000326, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000335, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000326, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001175, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000236, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000246, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000258, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>2.6e-05, :action_time=>0.000574, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000371, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000369, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000491, :before_filters_time=>0.000143}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000366, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00039, :before_filters_time=>9.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001161, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000201, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000232, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000231, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000325, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000327, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000348, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001767, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000325, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000404, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000318, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000328, :before_filters_time=>5.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000306, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000327, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000328, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000333, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000335, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001247, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00023, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00026, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000368, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000361, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000354, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000384, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001175, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>2.7e-05, :action_time=>0.000257, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00034, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000322, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000254, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000396, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000345, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000332, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000329, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000353, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001155, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0002, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000365, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000345, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000335, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000346, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001156, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000207, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000305, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00058, :before_filters_time=>0.000338}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000372, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000364, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000337, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000341, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000337, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001132, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000202, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000282, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000361, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000334, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000381, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001131, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000211, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000291, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000288, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000285, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00034, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000305, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000398, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000341, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000327, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000339, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001415, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00024, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00032, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00026, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000372, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000335, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000344, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000326, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001192, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000261, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000242, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000371, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000448, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000329, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000336, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000336, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001128, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000368, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000254, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000329, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000325, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00033, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001236, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0002, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000217, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000307, :before_filters_time=>4.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000313, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000297, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000437, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000364, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00033, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>7.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001106, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000407, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000471, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000279, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000346, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000331, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000334, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001271, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000288, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000279, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000321, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000304, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000283, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000409, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000339, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000354, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.002329, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001102, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000202, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000223, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00033, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000334, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000351, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001126, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000185, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000215, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>3.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000297, :before_filters_time=>4.5e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00108, :before_filters_time=>0.000704}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000436, :before_filters_time=>0.00014}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000414, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000394, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002102, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000693, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000572, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000597, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000948, :before_filters_time=>9.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001129, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000211, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000244, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000433, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000385, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000401, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001825, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000446, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.023814, :before_filters_time=>0.000147}
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000572, :before_filters_time=>0.000151}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000443, :before_filters_time=>0.000151}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000388, :before_filters_time=>0.00014}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000466, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000352, :before_filters_time=>4.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000346, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000294, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00031, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000355, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001889, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000411, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001137, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000218, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000263, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000241, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000359, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00178, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>0.000138}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001771, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000332, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000448, :before_filters_time=>0.000153}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000367, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000517, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000393, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000459, :before_filters_time=>0.000145}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000433, :before_filters_time=>0.000134}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000444, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000442, :before_filters_time=>0.00013}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000362, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000525, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000456, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000356, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001721, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000374, :before_filters_time=>8.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001082, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00021, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000216, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000236, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000251, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000596, :before_filters_time=>0.000381}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00042, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000398, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000353, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000357, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00175, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000385, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.001103}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000201}
- ~ {:before_filters_time=>9.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000258}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000215}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000237}
- ~ {:before_filters_time=>3.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000244}
- ~ {:before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000267}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000257}
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000242}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000405}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000394}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000356}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>5.0e-06, :action_time=>0.000393}
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>8.0e-06, :action_time=>0.001782}
- ~ {:before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000374}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.001082}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000229}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000271}
- ~ {:before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000224}
- ~ {:before_filters_time=>3.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>3.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.000283}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.00025}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000274}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000265}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000408}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.00038}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000369}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000362}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>1.9e-05, :action_time=>0.093813}
- ~ {:before_filters_time=>0.000278, :after_filters_time=>1.0e-05, :action_time=>0.000793}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.018998, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000337, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000543, :before_filters_time=>0.000152}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000368, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000331, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000309, :before_filters_time=>4.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000264, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00043, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000357, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.011019, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000678, :before_filters_time=>0.000157}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001096, :before_filters_time=>7.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001103, :before_filters_time=>6.9e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001071, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001121, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001196, :before_filters_time=>7.3e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001087, :before_filters_time=>6.8e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001087, :before_filters_time=>6.8e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0011, :before_filters_time=>6.8e-05, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00112, :before_filters_time=>7.7e-05, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001218, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001219, :before_filters_time=>7.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001112, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001286, :before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001077, :before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001078, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001124, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001176, :before_filters_time=>7.2e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001078, :before_filters_time=>6.9e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001078, :before_filters_time=>6.8e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000428, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001178, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001267, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000439, :before_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001688, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000473, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001556, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000524, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001082, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00044, :before_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0011, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001106, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000432, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00111, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000551, :before_filters_time=>6.0e-06, :after_filters_time=>9.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001126, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00044, :before_filters_time=>6.0e-06, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001264, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000459, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001127, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000428, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001495, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00045, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001143, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000421, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001445, :before_filters_time=>1.1e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000521, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00117, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00043, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001098, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000426, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001114, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000433, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001599, :before_filters_time=>1.2e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000498, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001155, :before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000423, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001107, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000464, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001109, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00046, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001118, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000425, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001099, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000421, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00113, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000433, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001459, :before_filters_time=>1.0e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000527, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001208, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000485, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001511, :before_filters_time=>1.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00043, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001232, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000426, :before_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001143, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000428, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001344, :before_filters_time=>1.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00115, :before_filters_time=>9.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000437, :before_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001157}
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>9.0e-06, :action_time=>0.000538}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06, :action_time=>0.001235}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000898}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.2e-05, :after_filters_time=>9.0e-06, :action_time=>0.00151}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000435}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001131}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000456}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06, :action_time=>0.001146}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000436}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000193}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001138}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000423}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000242}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.0e-06, :after_filters_time=>8.0e-06, :action_time=>0.001145}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000426}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000234}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.001343}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000433}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000297}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>7.0e-06, :action_time=>0.00119}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000437}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000225}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.001123}
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.001585}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000378}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>8.0e-06, :action_time=>0.000266}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001215}
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>9.0e-06, :action_time=>0.001497}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000378}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000254}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.2e-05, :after_filters_time=>8.0e-06, :action_time=>0.001513}
- ~ {:before_filters_time=>1.4e-05, :after_filters_time=>1.2e-05, :action_time=>0.001781}
- ~ {:before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000447}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000279}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001134}
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.001625}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000402}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.00023}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>1.2e-05, :after_filters_time=>1.0e-05, :action_time=>0.001618}
- ~ {:before_filters_time=>8.0e-06, :after_filters_time=>2.0e-05, :action_time=>0.000471}
- ~ {:before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000271}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001246}
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000458}
- ~ {:before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000255}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001124, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000426, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.023019, :before_filters_time=>1.9e-05, :after_filters_time=>1.3e-05}
- ~ {:action_time=>0.000733, :before_filters_time=>1.1e-05, :after_filters_time=>1.1e-05}
- ~ {:action_time=>0.000404, :before_filters_time=>1.1e-05, :after_filters_time=>1.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001142, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000427, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00115, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000427, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000231, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001186, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000203, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000427, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0016, :before_filters_time=>1.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000213, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00045, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000228, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.006056, :before_filters_time=>1.5e-05, :after_filters_time=>1.0e-05}
- ~ {:action_time=>0.000347, :before_filters_time=>1.1e-05, :after_filters_time=>1.1e-05}
- ~ {:action_time=>0.000624, :before_filters_time=>1.0e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000392, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001858, :before_filters_time=>1.2e-05, :after_filters_time=>1.1e-05}
- ~ {:action_time=>0.000301, :before_filters_time=>1.0e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.00056, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000268, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001143, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000212, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00044, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000229, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001237, :before_filters_time=>8.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00049, :before_filters_time=>0.000317, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000291, :before_filters_time=>9.8e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000219, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00024, :before_filters_time=>3.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000248, :before_filters_time=>4.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000311, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000298, :before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00027, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000261, :before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000405, :before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000386, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000372, :before_filters_time=>9.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000363, :before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.095873, :before_filters_time=>7.5e-05, :after_filters_time=>1.7e-05}
- ~ {:action_time=>0.00065, :before_filters_time=>0.000149, :after_filters_time=>1.1e-05}
- ~ {:action_time=>0.000593, :before_filters_time=>1.1e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000316, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000519, :before_filters_time=>8.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001374, :before_filters_time=>8.2e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>6.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00033, :before_filters_time=>0.00011, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>9.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>3.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000244, :before_filters_time=>3.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000278, :before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000247, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00026, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000423, :before_filters_time=>0.0001, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000387, :before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000349, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000355, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.001799, :before_filters_time=>8.3e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000385, :before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000372, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00045, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000242, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001205, :before_filters_time=>7.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>5.4e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000273, :before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000219, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000279, :before_filters_time=>4.2e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>3.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000251, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000242, :before_filters_time=>7.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00039, :before_filters_time=>8.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000387, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000357, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000356, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.001788, :before_filters_time=>7.6e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000378, :before_filters_time=>8.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000396, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000239, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000427, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000255, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001162, :before_filters_time=>7.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000191, :before_filters_time=>5.2e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000217, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000252, :before_filters_time=>3.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000237, :before_filters_time=>3.2e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000252, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000278, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000251, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000387, :before_filters_time=>8.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000391, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000354, :before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000358, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.001771, :before_filters_time=>8.2e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00038, :before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000363, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000421, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000414, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001127, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000208, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000458, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001103, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000312, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000399, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00037, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.03156, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001901, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000413, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000249, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.00182, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000367, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000457, :before_filters_time=>0.000155}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000385, :before_filters_time=>0.000137}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000313, :before_filters_time=>4.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000306, :before_filters_time=>4.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00032, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000322, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000334, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000443, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000566, :before_filters_time=>0.000196}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000382, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000364, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002034, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00039, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>9.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000411, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001208, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000194, :before_filters_time=>5.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000814, :before_filters_time=>0.000614}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000505, :before_filters_time=>4.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000513, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000419, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00043, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000403, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000371, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.072975, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000607, :before_filters_time=>0.000135}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000576, :before_filters_time=>1.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000305, :before_filters_time=>1.0e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000501, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000619, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `[]' for #<Merb::Router::Route:0x1806744> - (NoMethodError)
-
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router/behavior.rb:351:in `resources'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:40
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/views/nodes/../../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/views/nodes/new.html.erb_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001305, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000326, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000274, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000323, :before_filters_time=>4.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000341, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000753, :before_filters_time=>0.00017}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000462, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000432, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000483, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001938, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000433, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000546, :before_filters_time=>9.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>9.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001097, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000255, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000268, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000391, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000422, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001793, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000381, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000359, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000399, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000551, :before_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001102, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000418, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>4.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000282, :before_filters_time=>4.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000273, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000256, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000389, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000355, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000367, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001736, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>8.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000201, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000399, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001151, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000501, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001319, :before_filters_time=>0.000222}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000253, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0003, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000412, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000363, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002029, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000367, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001101, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000231, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000259, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000397, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000389, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000369, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001857, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000362, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000234, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001179, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000203, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000437, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001648, :before_filters_time=>1.2e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.00053, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00124, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000254, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000464, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00023, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001139, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000432, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001168, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>5.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001128, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000435, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001142, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000213, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000446, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001263, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000435, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001153, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0002, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000488, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001888, :before_filters_time=>1.2e-05, :after_filters_time=>1.0e-05}
- ~ {:action_time=>0.000312, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000569, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001149, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0002, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000418, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001207, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000214, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001852, :before_filters_time=>1.4e-05, :after_filters_time=>1.0e-05}
- ~ {:action_time=>0.000329, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000575, :before_filters_time=>8.0e-06, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000265, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001139, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000206, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000447, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000228, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001234, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000205, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000448, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001165, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000238, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00187, :before_filters_time=>1.3e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000304, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.001064, :before_filters_time=>7.0e-06, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001311, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000438, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001256, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0002, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000431, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000282, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001253, :before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000205, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000439, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001152, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000213, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000432, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000222, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001145, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000199, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00044, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000226, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001124, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000437, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000234, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001134, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000206, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000223, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001136, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000202, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000436, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000244, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001182, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00021, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000449, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000231, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001227, :before_filters_time=>1.1e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000262, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00044, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000228, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001142, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000243, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000466, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000235, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001141, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
- ~ true
- ~ {:action_time=>0.00024, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000439, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000233, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001112, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>3.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000401, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001948, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>7.0e-06}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>7.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000264, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001107, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000198, :before_filters_time=>5.2e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000272, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000273, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000278, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000395, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001923, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000382, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000367, :before_filters_time=>7.0e-06}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000245, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000407, :before_filters_time=>6.0e-06}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0012, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000255, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000446, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000245, :before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001112, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000232, :before_filters_time=>3.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000281, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000395, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000355, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000365, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.001728, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000386, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00038, :before_filters_time=>5.6e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000427, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000272, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001163, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>3.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000266, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000247, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000399, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00177, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000386, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000399, :before_filters_time=>6.0e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000261, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000419, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0003, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001616, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000264, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000345, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000303, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>3.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>3.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000278, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000249, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001743, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000386, :before_filters_time=>5.9e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000258, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00042, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001153, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000232, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00036, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001815, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>5.8e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000416, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000443, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001126, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000269, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000253, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000262, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000413, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00179, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000391, :before_filters_time=>5.9e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000266, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000445, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001111, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000191, :before_filters_time=>5.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000426, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000241, :before_filters_time=>3.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>3.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000301, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000392, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000397, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000366, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000362, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001882, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>5.7e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000257, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000834, :before_filters_time=>0.00015}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/app/controllers/nodes.rb:
-
-undefined method `before_filter' for Nodes:Class - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/app/controllers/nodes.rb:12
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/controllers/../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/controllers/nodes_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001106, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000203, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000265, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>7.7e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000356, :before_filters_time=>0.0001}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000319, :before_filters_time=>8.7e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>0.000139}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000323, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000463, :before_filters_time=>0.000128}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000387, :before_filters_time=>0.00015}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000322, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000408, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000394, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00048, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000368, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001806, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001215, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00021, :before_filters_time=>6.1e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>0.000175}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000315, :before_filters_time=>0.000136}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000376, :before_filters_time=>0.000112}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00039, :before_filters_time=>0.000113}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000403, :before_filters_time=>0.000162}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000379, :before_filters_time=>0.000142}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0004, :before_filters_time=>0.00015}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000378, :before_filters_time=>0.00014}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>0.000162}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000494, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000537, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000391, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.004359, :before_filters_time=>0.000202}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000425, :before_filters_time=>0.000102}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001109, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000292, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000226, :before_filters_time=>7.8e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>9.0e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000361, :before_filters_time=>8.6e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>0.000169}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>0.000131}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>0.000126}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>0.000142}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000368, :before_filters_time=>0.000146}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000457, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0004, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000366, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000358, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001857, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00041, :before_filters_time=>9.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001676, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000296, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000348, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000287, :before_filters_time=>0.000102}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>9.9e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>8.2e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000792, :before_filters_time=>0.000566}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000326, :before_filters_time=>0.000125}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000336, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000332, :before_filters_time=>0.000122}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>0.000124}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000477, :before_filters_time=>0.000137}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000464, :before_filters_time=>0.000127}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000424, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000431, :before_filters_time=>0.000126}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001849, :before_filters_time=>0.000121}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000457, :before_filters_time=>0.000139}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001103, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000209, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000294, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000217, :before_filters_time=>7.7e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000333, :before_filters_time=>9.0e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000337, :before_filters_time=>9.4e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00034, :before_filters_time=>0.000134}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000352, :before_filters_time=>0.000151}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>0.000139}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>0.000161}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000384, :before_filters_time=>0.000151}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000518, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000458, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000402, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000366, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.07075, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000667, :before_filters_time=>0.000152}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001099, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00021, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>7.8e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00033, :before_filters_time=>8.7e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00031, :before_filters_time=>8.2e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000347, :before_filters_time=>0.000137}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000322, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000336, :before_filters_time=>0.000124}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000338, :before_filters_time=>0.000124}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000319, :before_filters_time=>0.000125}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000471, :before_filters_time=>0.000138}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000466, :before_filters_time=>0.000129}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000428, :before_filters_time=>0.000124}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000444, :before_filters_time=>0.000128}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>1.8e-05, :action_time=>0.080605, :before_filters_time=>0.000121}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00077, :before_filters_time=>0.000238}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001195, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000208, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>8.4e-05}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00034, :before_filters_time=>9.1e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000317, :before_filters_time=>8.5e-05}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000345, :before_filters_time=>0.000136}
- ~ Redirecting to: openid_consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000322, :before_filters_time=>0.000124}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000337, :before_filters_time=>0.000123}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000317, :before_filters_time=>0.000125}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000556, :before_filters_time=>0.000161}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000469, :before_filters_time=>0.00013}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000434, :before_filters_time=>0.000129}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000513, :before_filters_time=>0.000179}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001995, :before_filters_time=>0.000159}
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000525, :before_filters_time=>0.00017}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>5.9e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000465, :before_filters_time=>0.000132}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00026, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001114, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000193, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>0.000113}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>0.000118}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000372, :before_filters_time=>0.000162}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>0.000148}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>0.000148}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>0.000155}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000343, :before_filters_time=>0.000148}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000789, :before_filters_time=>0.00039}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000507, :before_filters_time=>0.000162}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00047, :before_filters_time=>0.000154}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000469, :before_filters_time=>0.000156}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>2.2e-05, :action_time=>0.084763, :before_filters_time=>0.000165}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000841, :before_filters_time=>0.000286}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000681, :before_filters_time=>0.000113}
- ~ true
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001291, :before_filters_time=>0.000148}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00069, :before_filters_time=>0.000161}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000332, :before_filters_time=>0.000106}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001121, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>8.5e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000369, :before_filters_time=>0.000117}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>0.000113}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000371, :before_filters_time=>0.00016}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000351, :before_filters_time=>0.000148}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000361, :before_filters_time=>0.000147}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>0.000151}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000342, :before_filters_time=>0.000146}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000514, :before_filters_time=>0.000172}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000508, :before_filters_time=>0.000162}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000464, :before_filters_time=>0.000156}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000461, :before_filters_time=>0.000153}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001874, :before_filters_time=>0.000151}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000516, :before_filters_time=>0.000173}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000395, :before_filters_time=>6.0e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000436, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000259, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001147, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000211, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00037, :before_filters_time=>0.000114}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000379, :before_filters_time=>0.000145}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00041, :before_filters_time=>0.000195}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000357, :before_filters_time=>0.00015}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000358, :before_filters_time=>0.000146}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000355, :before_filters_time=>0.000146}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00034, :before_filters_time=>0.000145}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000497, :before_filters_time=>0.000163}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000491, :before_filters_time=>0.000151}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000477, :before_filters_time=>0.000159}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000458, :before_filters_time=>0.000149}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001916, :before_filters_time=>0.000157}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000504, :before_filters_time=>0.000167}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000395, :before_filters_time=>6.1e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00042, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000298, :before_filters_time=>9.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001153, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000315, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>8.1e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000379, :before_filters_time=>0.000119}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000366, :before_filters_time=>0.000122}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000373, :before_filters_time=>0.000165}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000347, :before_filters_time=>0.000148}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000356, :before_filters_time=>0.000146}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000992, :before_filters_time=>0.000294}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000597, :before_filters_time=>0.000255}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000831, :before_filters_time=>0.000296}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000712, :before_filters_time=>0.000227}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000655, :before_filters_time=>0.000216}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000553, :before_filters_time=>0.000185}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002145, :before_filters_time=>0.000177}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00059, :before_filters_time=>0.000201}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000459, :before_filters_time=>7.1e-05}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.0003, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000414, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001128, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000268}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000304}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000328}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00032}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000377}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000305}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000289}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000283}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000337}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000425, :before_filters_time=>6.6e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00046, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001158, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000229, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000361, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000226, :before_filters_time=>8.0e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000295}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000281}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00026}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000301}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000332}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000314}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000367}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000294}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000295}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000307}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: openid_consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000298}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>5.7e-05}
- ~ true
- ~ {:after_filters_time=>2.9e-05, :action_time=>0.000475, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000457, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000252, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001116, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ You are being redirected to the openid consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000402, :before_filters_time=>6.3e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000376, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000467, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001772, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000291, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000363, :before_filters_time=>0.000124}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000294, :before_filters_time=>0.000103}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000789}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000762}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000866}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000828}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000724}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00074}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001011}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00079}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001004}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000777}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000681}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.032602, :before_filters_time=>0.032138}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000369, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000488, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>0.000226, :action_time=>0.000494, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001214, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000209, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000306, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>8.1e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000744}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000641}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000743}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000712}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000682}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000711}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000874}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000675}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000737}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001184, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000197, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000563, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000237, :before_filters_time=>8.6e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000746}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000756}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000692}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.004169}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001291}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001021}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00085}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000705}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000788}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001247}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000686}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000698}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000942}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001547, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000206, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000325, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>9.3e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000822}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000712}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000736}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000754}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000749}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000704}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000725}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000714}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000739}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000754}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001141, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00074}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000705}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000666}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000744}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000656}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000746}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000732}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000674}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000818}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000688}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000504, :before_filters_time=>7.9e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000302, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000523, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00025, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001147, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000797}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000877}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000772}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002526}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000707}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000678}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000844}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000789}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000685}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000899}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000706}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000704}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000694}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.007579, :before_filters_time=>7.9e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000287, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00049, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001427, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000306, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000328, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000263, :before_filters_time=>9.5e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00086}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000741}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000705}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000775}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000732}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000794}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000742}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0007}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00069}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000785}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000434, :before_filters_time=>7.0e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000499, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001938, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000262, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000226, :before_filters_time=>8.3e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001071}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000668}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000751}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000709}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00066}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001268, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000348, :before_filters_time=>0.000128}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>8.0e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000784}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000692}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000755}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00067}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000783}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000725}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000689}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000695}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00073}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000879}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001551}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000813}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000694}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00089}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00112, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000768}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000707}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000717}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000655}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000695}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000757}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001123, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000312, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.2e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000765}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000638}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000698}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000657}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000707}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000689}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000661}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>4.8e-05, :action_time=>0.000699}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000707}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00068}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000672}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001144, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000198, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>8.0e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000766}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000946}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000701}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000735}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000821}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0007}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001359}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000722}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000751}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001301}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000746}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00102}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000752}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000798}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000718}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000709}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001103, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000213, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000736}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000781}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000751}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000736}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000672}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000657}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000407, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000407, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00036, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001719, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000393, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001789, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000412, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000443, :before_filters_time=>0.000156}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000371, :before_filters_time=>0.000132}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001072}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000842}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000697}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000739}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000663}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000378, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000359, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001821, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000396, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001107, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000739}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000764}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000737}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000681}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000707}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000678}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00071}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000667}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000408, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00038, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000363, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001916, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00039, :before_filters_time=>9.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001105, :before_filters_time=>7.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000203, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000744}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000638}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000651}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000716}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000683}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000758}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00039, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000363, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000358, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001787, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001197, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000757}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000661}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000801}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00074}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000714}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00069}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000663}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000478, :before_filters_time=>0.000151}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000395, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000363, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000365, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001926, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000398, :before_filters_time=>9.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001148, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000212, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000292, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>9.5e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000836}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000735}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000756}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.8e-05, :action_time=>0.073159}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001257}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001171}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001093}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000982}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000883}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000786}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000396, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000367, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002087, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0004, :before_filters_time=>6.1e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000433, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>7.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001117, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000196, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>7.8e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00074}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000636}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0007}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000683}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000753}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000411, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000364, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000361, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002032, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000409, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000397, :before_filters_time=>6.2e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000438, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00024, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001137, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000212, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>0.00012}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000748}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000647}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000783}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000668}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000731}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000728}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000661}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00077}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000663}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00067}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000476, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000379, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000379, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001905, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00041, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000405, :before_filters_time=>6.3e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000431, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001314, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000337, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000297, :before_filters_time=>0.000104}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001725}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000832}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000738}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00109}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001287}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000759}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000944}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000796}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001079, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000476, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000832, :before_filters_time=>0.000486}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000701, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002552, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000855, :before_filters_time=>0.000107}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001148, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000748}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000647}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000644}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000763}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000675}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00067}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00075}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000677}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000781}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000703}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000669}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001514, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000198, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>7.7e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002057}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000685}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001017}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000989}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000811}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000745}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.00096}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000723}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000759}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000685}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000759}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000737}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001225}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00076}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001131, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000731, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>0.00012}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000823}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000749}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.007818}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001098}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001006}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000797}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000744}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001018}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000859}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000928}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000728}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000813}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00069}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000737}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.008707, :before_filters_time=>0.000141}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000367, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000457, :before_filters_time=>0.000158}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000375, :before_filters_time=>0.000132}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001309}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001136}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001236}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001166}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001382}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001309}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001238}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001136}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.001798}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001307}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001286}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00099}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001065}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0008}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00117, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000234, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000339, :before_filters_time=>0.000153}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>8.0e-05}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001006}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000724}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000753}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000719}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000718}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000718}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000678}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000656}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000666}
- ~ You are being redirected to the openid consumer
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000774}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001455, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000278, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000464, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0003, :before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001145, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000197, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>7.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000719}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000815}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002939}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000798}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002232}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001236}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000948}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000771}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000985}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000691}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000389, :before_filters_time=>6.0e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000597, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>9.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001105, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000207, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000269, :before_filters_time=>0.000107}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000816}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000629}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000876}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000708}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000666}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000745}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001006}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001523}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000846}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001189}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000709}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001232}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001323, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000271, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>7.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000834}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000782}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000704}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000974}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001099}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000926}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000662}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000793}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000642}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000629, :before_filters_time=>0.000156}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000759, :before_filters_time=>0.000205}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000501, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000452, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002457, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00053, :before_filters_time=>0.000126}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001232, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00022, :before_filters_time=>7.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000918}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000774}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00138}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001348}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000897}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000652}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000841}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000901}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000512, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00042, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000373, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000363, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002135, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>0.000102}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001159, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000245, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000288, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00076}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00481}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000865}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000771}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000951}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000762}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000906}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000671}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000449, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000548, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00046, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.0019, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>4.4e-05, :action_time=>0.000533, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>6.0e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000328, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.00126, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000303, :before_filters_time=>9.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.001389}
- ~ {:before_filters_time=>6.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000239}
- ~ {:before_filters_time=>0.000317, :after_filters_time=>6.0e-06, :action_time=>0.00059}
- ~ {:before_filters_time=>0.000102, :after_filters_time=>5.0e-06, :action_time=>0.000273}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.002058}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000718}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000856}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000945}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.012452}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000819}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.001478}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.003535}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001087}
- ~ {:before_filters_time=>0.000131, :after_filters_time=>8.0e-06, :action_time=>0.002103}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>9.0e-06, :action_time=>0.037949}
- ~ {:before_filters_time=>0.000144, :after_filters_time=>5.0e-06, :action_time=>0.0005}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000396}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>1.0e-05, :action_time=>0.051035}
- ~ {:before_filters_time=>0.000206, :after_filters_time=>2.5e-05, :action_time=>0.000652}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002882, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000256, :before_filters_time=>7.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>8.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001615}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001853}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001119}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00149}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.01217}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000864}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001469}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000895}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000723}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000956}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000448, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000515, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000708, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002743, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000434, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000762, :before_filters_time=>6.9e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000511, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000282, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00114, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000222, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000289, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000758}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000605}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0009}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001135}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000647}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000821}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000461, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00065, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000932, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.007569, :before_filters_time=>0.007111}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.002255, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000448, :before_filters_time=>0.000107}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002182, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000189, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000284, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>0.000126}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00078}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000877}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000613}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000829}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000652}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000728}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000705}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000776}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>0.001574, :action_time=>0.003794}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001035}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000763}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001183, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>8.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000883}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.003038}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000912}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001034}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000698}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000642}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000463, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00048, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000398, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000426, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.002026, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000414, :before_filters_time=>9.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001245, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000217, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000348, :before_filters_time=>0.000189}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001295}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000727}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>0.000278, :action_time=>0.004135}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000848}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000779}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000799}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002428}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001141}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000465, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>7.5e-05, :action_time=>0.001143, :before_filters_time=>0.000183}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002032, :before_filters_time=>0.001115}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000451, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001857, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000504, :before_filters_time=>0.000157}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001176, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000232, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00037, :before_filters_time=>0.000156}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00074}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000695}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000727}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000702}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000632}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000632}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000408, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00046, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.9e-05, :action_time=>0.004413, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000675, :before_filters_time=>0.000105}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001397, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000785, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000813}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000611}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000702}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000614}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000775}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000754}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00048, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00051, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000436, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002364, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000492, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001068, :before_filters_time=>0.000189}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00167, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000459, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001127, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000196, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000291, :before_filters_time=>0.000103}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000736}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000911}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00079}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000705}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000758}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00077}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000771}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000529, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000511, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000386, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002839, :before_filters_time=>0.000168}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000624, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>6.7e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000323, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000719, :before_filters_time=>0.000205}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>7.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002381, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000813, :before_filters_time=>7.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000307, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>8.3e-05, :action_time=>0.001513, :before_filters_time=>0.001218}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000605}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000599}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>4.6e-05, :action_time=>0.000849}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000593, :before_filters_time=>0.000178}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000587, :before_filters_time=>0.000165}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000449, :before_filters_time=>0.000131}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000447, :before_filters_time=>0.000139}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00288, :before_filters_time=>0.000141}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000576, :before_filters_time=>0.000157}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000466, :before_filters_time=>7.5e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000383, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000675, :before_filters_time=>0.000287}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00025, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001222, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000459, :before_filters_time=>0.000147}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000995}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001343}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000703}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000687}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000889}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000807}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000749}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000628}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>6.7e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000468, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001953, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000459, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000314, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000813}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000798}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000774}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00076}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00097}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001057}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000858}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.003482, :before_filters_time=>0.000228}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000319, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>9.3e-05, :action_time=>0.000372, :before_filters_time=>0.000126}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000973}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001462}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000737}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00086}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001311}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000917}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002833, :before_filters_time=>7.6e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000295, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001069, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001171, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000225, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000928}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00079}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000731}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001477}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000855}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000661}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00046, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000377, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001801, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000376, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002546, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000213, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>8.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000768}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000647}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000742}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000758, :before_filters_time=>0.000119}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000417, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000488, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001745, :before_filters_time=>0.001349}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.003403, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000428, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>6.2e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000425, :before_filters_time=>0.000181}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000498, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000311, :before_filters_time=>9.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.003471, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002451, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000361, :before_filters_time=>0.000134}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000248, :before_filters_time=>9.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001447}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001984}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000919}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000954}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001194}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000728}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000476, :before_filters_time=>0.000125}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00043, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000406, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002228, :before_filters_time=>0.000436}
- ~ {:after_filters_time=>2.0e-05, :action_time=>0.097745, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000844, :before_filters_time=>0.0002}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001417, :before_filters_time=>9.1e-05}
- ~ true
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000641, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000508, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002312, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000789, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00068, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000319, :before_filters_time=>0.0001}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.00236}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001378}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.002054}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001745}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001653}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002319}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001431}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001269}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000747}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00073}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000609, :before_filters_time=>0.000128}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000486, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000596, :before_filters_time=>0.000163}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002183, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000449, :before_filters_time=>0.000103}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000286, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000417, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000332, :before_filters_time=>0.000156}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002748, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000633, :before_filters_time=>0.000173}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000304, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000327, :before_filters_time=>0.000119}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000818}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000785}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000822}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001185}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000977}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000738}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000652}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000513, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000536, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000521, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>0.000768, :action_time=>0.001524, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002902, :before_filters_time=>0.00099}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000425, :before_filters_time=>9.9e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000956, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000561, :before_filters_time=>0.000178}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001227, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000204, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000267, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000358, :before_filters_time=>9.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000814}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001502}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000894}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000811}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000837}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000774}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000914}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000653}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000421, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000427, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000428, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000368, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002186, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000424, :before_filters_time=>0.000101}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000307, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001035, :before_filters_time=>0.000429}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001135, :before_filters_time=>0.00092}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000271, :before_filters_time=>7.7e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000503, :before_filters_time=>9.4e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000258, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000308, :before_filters_time=>8.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000569, :before_filters_time=>0.00012, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>8.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000307, :before_filters_time=>8.8e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000734, :before_filters_time=>0.000103, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000313, :before_filters_time=>0.000113, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000323, :before_filters_time=>9.2e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000549, :before_filters_time=>0.000136, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000253, :before_filters_time=>7.8e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000423, :before_filters_time=>8.3e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000972, :before_filters_time=>0.000533, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.00025, :before_filters_time=>7.8e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000309, :before_filters_time=>8.8e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000522, :before_filters_time=>0.000102, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000337, :before_filters_time=>0.000149, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000291, :before_filters_time=>7.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.0008, :before_filters_time=>0.000139, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000293, :before_filters_time=>8.6e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000278, :before_filters_time=>8.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00045, :before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000242, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000267, :before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.001581, :before_filters_time=>9.9e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000262, :before_filters_time=>8.4e-05, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000321, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000462, :before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000297, :before_filters_time=>9.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000284, :before_filters_time=>8.2e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000495, :before_filters_time=>0.000104, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000375, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000329, :before_filters_time=>0.000104, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000449, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000251, :before_filters_time=>8.0e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000291, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000454, :before_filters_time=>9.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000239, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001165, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000219, :before_filters_time=>7.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000879}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000769}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000909}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000723}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000888}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000461, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00038, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000498, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001809, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000456, :before_filters_time=>9.5e-05}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000448, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000275, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000328, :before_filters_time=>8.0e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000468, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000261, :before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000461, :before_filters_time=>9.1e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000241, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ true
- ~ {:action_time=>0.000592, :before_filters_time=>8.1e-05, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.000453, :before_filters_time=>9.1e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000285, :before_filters_time=>8.9e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `name' for {:validate=>:post}:Hash - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:41
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/views/nodes/../../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/views/nodes/new.html.erb_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Could not load /Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:
-
-undefined method `name' for {:validate=>:post}:Hash - (NoMethodError)
-
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:41
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/dispatch/router.rb:48:in `prepare'
-/Users/adam/src/sandbox/chef/packages/chef-server/config/router.rb:23
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:329:in `load_file'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:354:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `each'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:351:in `load_classes_with_requirements'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:322:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/bootloader.rb:67:in `run'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core/server.rb:43:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:36:in `start'
-/Library/Ruby/Gems/1.8/gems/merb-core-0.9.3/lib/merb-core.rb:47:in `start_environment'
-./spec/models/../spec_helper.rb:5
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
-/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
-./spec/models/ident_spec.rb:1
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:14:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `each'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:13:in `load_files'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:85:in `run_examples'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
-/Library/Ruby/Gems/1.8/gems/rspec-1.1.3/bin/spec:4
-/usr/bin/spec:19:in `load'
-/usr/bin/spec:19
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001204, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000295, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>7.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00079}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000719}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000806}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000797}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00071}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000822}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000408, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000405, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000393, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001833, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000474, :before_filters_time=>0.000103}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000462, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000254, :before_filters_time=>7.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001511, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000205, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000426, :before_filters_time=>0.000217}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000247, :before_filters_time=>8.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000793}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000925}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000677}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002088}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000782}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000725}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00074}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000548, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00054, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000462, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00042, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002091, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000438, :before_filters_time=>0.000105}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000523, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000266, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001705, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000296, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.002067, :before_filters_time=>0.000139}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001439, :before_filters_time=>0.000118}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001036}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000852}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.00102}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000939}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00101}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00097}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000975}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000998}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000492, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00048, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000445, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000521, :before_filters_time=>0.000119}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.001951, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000464, :before_filters_time=>0.000109}
- ~ true
- ~ {:after_filters_time=>3.4e-05, :action_time=>0.001774, :before_filters_time=>0.000452}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000521, :before_filters_time=>0.000138}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000346, :before_filters_time=>0.000126}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00112, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>0.00014}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000233, :before_filters_time=>8.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000745}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000649}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000661}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000947}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000649}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000473, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000894, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000447, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00043, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001804, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000406, :before_filters_time=>9.4e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000293, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000434, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000322, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001138, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000216, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000271, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000287, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001106}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000765}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000788}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000926}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000636}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000466, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00049, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00045, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00042, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00185, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000499, :before_filters_time=>0.000103}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000278, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000483, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000326, :before_filters_time=>0.000103}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001119, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00029, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000719, :before_filters_time=>0.000491}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001175}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000737}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000715}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000962}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000724}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001016}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000779}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000506, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000526, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001005, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002157, :before_filters_time=>0.000134}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000598, :before_filters_time=>0.000162}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000425, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000436, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000249, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001163, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>6.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000331, :before_filters_time=>0.00015}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>8.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000619}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000689}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000641}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000713}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000641}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000706}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000775}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00044, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000477, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001882, :before_filters_time=>0.000135}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000416, :before_filters_time=>0.0001}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000415, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000641, :before_filters_time=>0.000149}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000267, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00129, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000227, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000738}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001506}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000839}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000965}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000888}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000689}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000996}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000508, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000457, :before_filters_time=>0.000132}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000413, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000464, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002005, :before_filters_time=>0.000152}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000522, :before_filters_time=>9.9e-05}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000568, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000456, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001186, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000279, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>9.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000978}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000624}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000801}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001115}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.003694}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000811}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001303}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000741}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000562, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000534, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000526, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000484, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001867, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000438, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002128, :before_filters_time=>0.000147}
- ~ {:after_filters_time=>1.9e-05, :action_time=>0.000326, :before_filters_time=>9.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001149, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>8.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000846}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000851}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000618}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000698}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001306}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001021}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000422, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002184, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000436, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000467, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001176, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000208, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000419, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000237, :before_filters_time=>8.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000788}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000776}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000677}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000711}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000781}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000681}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00092}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000451, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000423, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000443, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0006, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001908, :before_filters_time=>0.000169}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000469, :before_filters_time=>9.4e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000296, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000482, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000251, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001239, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00023, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000631}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000603}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.000663}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000772}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000726}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000432, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000404, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000455, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00194, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000432, :before_filters_time=>0.000101}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000265, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000313, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001262, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000202, :before_filters_time=>5.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000746}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00091}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000704}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000711}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000692}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000824}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000433, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000484, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000422, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001933, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000418, :before_filters_time=>0.0001}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000848, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000338, :before_filters_time=>0.000155}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001303, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000236, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000349, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>9.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000988}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001302}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001279}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001906}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000777}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000827}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001037}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000907}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00086}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001099, :before_filters_time=>0.000153}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000514, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000451, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000423, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001838, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000415, :before_filters_time=>9.8e-05}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000304, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>0.000445, :action_time=>0.000916, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00028, :before_filters_time=>9.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001198, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000373, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000238, :before_filters_time=>9.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000782}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000699}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000779}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000755}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000427, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000428, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001231, :before_filters_time=>0.000826}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000501, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.003031, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00043, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000325, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000517, :before_filters_time=>0.000119}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>9.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001172, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000203, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000291, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000235, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000728}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000641}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000786}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000672}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000661}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000437, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000444, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000659, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000487, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001887, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000417, :before_filters_time=>9.6e-05}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000339, :before_filters_time=>0.00013}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000257, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001486, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000272, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000233, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000749}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000698}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000741}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000636}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000764}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000439, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000459, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000481, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000429, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001777, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000468, :before_filters_time=>0.000103}
- ~ true
- ~ {:after_filters_time=>3.1e-05, :action_time=>0.000325, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000426, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001112, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000338, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000328, :before_filters_time=>9.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00066}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000931}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00123}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001824}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000823}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.0008}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002473}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000504, :before_filters_time=>0.000123}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000481, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000622, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000541, :before_filters_time=>0.000173}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.002514, :before_filters_time=>0.000182}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00047, :before_filters_time=>0.000113}
- ~ true
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000914, :before_filters_time=>0.000138}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000542, :before_filters_time=>0.000127}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001168, :before_filters_time=>0.000909}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.00113, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000353, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000405, :before_filters_time=>0.000154}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>9.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000807}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000611}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000705}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000779}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000708}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000779}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000749}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000681}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000512, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000424, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000446, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000465, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002162, :before_filters_time=>0.000138}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000433, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000287, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000534, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000423, :before_filters_time=>9.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001225, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000228, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000965, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000337, :before_filters_time=>0.000124}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.5e-05, :action_time=>0.001147}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001215}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001026}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.001358}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001134}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000838}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001441}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000895}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001966}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000702}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000568, :before_filters_time=>0.000173}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0005, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000465, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000678, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002012, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000448, :before_filters_time=>0.000107}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000534, :before_filters_time=>0.000138}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000474, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001185, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000201, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000329, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000228, :before_filters_time=>8.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000754}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.8e-05, :action_time=>0.000718}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00061}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00077}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001029}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001017}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000663}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00051, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00042, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000577, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000395, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001932, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000426, :before_filters_time=>0.0001}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000275, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000468, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001269, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0002, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000216, :before_filters_time=>7.7e-05}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000884}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000672}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000934}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000983}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000711}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001221}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000463, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000505, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00041, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000448, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001933, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>0.000101}
- ~ true
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00029, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000481, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000246, :before_filters_time=>7.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001202, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000239, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00055, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000412, :before_filters_time=>0.000114}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001229}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000805}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000739}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000895}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002109}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002882}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000829}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000973}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000816}
- ~ Redirecting to: /openid/consumer/logout
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002712}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000553, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000505, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>4.2e-05, :action_time=>0.00133, :before_filters_time=>0.000252}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000466, :before_filters_time=>0.000117}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002172, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00044, :before_filters_time=>0.000102}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000881, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000993, :before_filters_time=>0.000144}
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001108, :before_filters_time=>0.000717}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00121, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>5.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000274, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>8.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000799}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000624}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000947}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00095}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00074}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000647}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.0e-05, :action_time=>0.000757}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000761}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000476, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000454, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000394, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000461, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001875, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>4.8e-05, :action_time=>0.000845, :before_filters_time=>0.000108}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000375, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001786, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001254, :before_filters_time=>0.000124}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000389, :before_filters_time=>0.000222}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000285, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00025, :before_filters_time=>9.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001102}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000873}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00061}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000781}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000668}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000746}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000803}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00079}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00045, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000543, :before_filters_time=>0.000114}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000397, :before_filters_time=>9.1e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000415, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002552, :before_filters_time=>0.000131}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00044, :before_filters_time=>0.000112}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000435, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002765, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>8.7e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.001241}
- ~ {:before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000195}
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000278}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.00023}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000607}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000767}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.003426}
- ~ {:before_filters_time=>0.000118, :after_filters_time=>6.0e-06, :action_time=>0.000507}
- ~ {:before_filters_time=>0.000477, :after_filters_time=>8.0e-06, :action_time=>0.001034}
- ~ {:before_filters_time=>0.00021, :after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000392}
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.002854}
- ~ {:before_filters_time=>0.000116, :after_filters_time=>6.0e-06, :action_time=>0.00046}
- ~ true
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000405}
- ~ {:before_filters_time=>0.00013, :after_filters_time=>6.0e-06, :action_time=>0.000533}
- ~ {:before_filters_time=>9.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000286}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.001356}
- ~ {:before_filters_time=>0.000337, :after_filters_time=>5.0e-06, :action_time=>0.000492}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000278}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000261}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000715}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000793}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000731}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000691}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000803}
- ~ {:before_filters_time=>0.000119, :after_filters_time=>6.0e-06, :action_time=>0.000534}
- ~ {:before_filters_time=>0.000423, :after_filters_time=>6.0e-06, :action_time=>0.000781}
- ~ {:before_filters_time=>8.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000386}
- ~ {:before_filters_time=>9.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000401}
- ~ {:before_filters_time=>0.000143, :after_filters_time=>7.0e-06, :action_time=>0.001993}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000531}
- ~ true
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000269}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>6.0e-06, :action_time=>0.00044}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.00035}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001203, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000198, :before_filters_time=>5.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000246, :before_filters_time=>0.000101}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000758}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000683}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000766}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000647}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000713}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000649}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00077}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000797}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000506, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000434, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000388, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000384, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001939, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685, :before_filters_time=>0.000107}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000278, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000474, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000284, :before_filters_time=>8.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.001244}
- ~ {:before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000195}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.000274}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000227}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0008}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000749}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000701}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000772}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ {:before_filters_time=>0.000114, :after_filters_time=>6.0e-06, :action_time=>0.00048}
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000453}
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000429}
- ~ {:before_filters_time=>0.000101, :after_filters_time=>6.0e-06, :action_time=>0.000439}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>8.0e-06, :action_time=>0.002012}
- ~ {:before_filters_time=>0.000101, :after_filters_time=>5.0e-06, :action_time=>0.000419}
- ~ true
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000297}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000427}
- ~ {:before_filters_time=>0.0124770000000001, :after_filters_time=>8.0e-06, :action_time=>0.0127250000000001}
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001217, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000221, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000306, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000462, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000769}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00067}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000728}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000881}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000774}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000732}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000782}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000438, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000408, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000405, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00066, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002082, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000437, :before_filters_time=>9.9e-05}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000314, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000493, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.001769}
- ~ {:before_filters_time=>6.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000236}
- ~ {:before_filters_time=>0.000104, :after_filters_time=>5.0e-06, :action_time=>0.000288}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000226}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00077}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000705}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00078}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001208}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000772}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000903}
- ~ {:before_filters_time=>0.000105, :after_filters_time=>6.0e-06, :action_time=>0.000508}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00043}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000416}
- ~ {:before_filters_time=>0.000105, :after_filters_time=>6.0e-06, :action_time=>0.000461}
- ~ {:before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001812}
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000425}
- ~ true
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>8.0e-06, :action_time=>0.000441}
- ~ {:before_filters_time=>0.000163, :after_filters_time=>6.0e-06, :action_time=>0.000532}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000257}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001146, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000217, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000309, :before_filters_time=>0.000111}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000265, :before_filters_time=>8.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000841}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000642}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000753}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000853}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000853}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001193}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00084}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001284}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000843}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000442, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.035777, :before_filters_time=>0.000186}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000505, :before_filters_time=>0.000155}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000481, :before_filters_time=>0.000142}
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.002099, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000462, :before_filters_time=>0.000108}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000357, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000478, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000287, :before_filters_time=>8.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001231, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00022, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00029, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000228, :before_filters_time=>8.4e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000773}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001017}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000938}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001642}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000994}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00072}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000713}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000725}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001175}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000505, :before_filters_time=>0.000123}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000553, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>2.2e-05, :action_time=>0.000605, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000511, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.003435, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000462, :before_filters_time=>0.00011}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000567, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00032, :before_filters_time=>0.000106}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00148, :before_filters_time=>0.000308}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000209, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000314, :before_filters_time=>8.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000764}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000624}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000788}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000715}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000796}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000742}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000467, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000742, :before_filters_time=>0.000126}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000676, :before_filters_time=>0.000144}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002173, :before_filters_time=>0.001412}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002205, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000481, :before_filters_time=>0.000115}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000279, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00027, :before_filters_time=>8.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001126, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000248, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000274, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000741}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000625}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00079}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000973}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000796}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000943}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001009}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000675}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000694}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000494, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000681, :before_filters_time=>0.00013}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00046, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001491, :before_filters_time=>0.000136}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002512, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00052, :before_filters_time=>0.000154}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000316, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000466, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00116, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000204, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000557, :before_filters_time=>0.000116}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>8.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000753}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000769}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000715}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000693}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000672}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000653}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000455, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000535, :before_filters_time=>0.00012}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000426, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00041, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.001958, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000436, :before_filters_time=>0.00011}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000435, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000262, :before_filters_time=>8.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001456, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>6.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000626, :before_filters_time=>0.000161}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000242, :before_filters_time=>9.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000768}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000627}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.003979}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002915}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000917}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000859}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000871}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001095}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000478, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001697, :before_filters_time=>0.000113}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000436, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.002905, :before_filters_time=>0.000164}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002909, :before_filters_time=>0.000122}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000467, :before_filters_time=>0.000112}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00031, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000506, :before_filters_time=>0.000121}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00034, :before_filters_time=>0.000106}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001289, :before_filters_time=>8.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00024, :before_filters_time=>7.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303, :before_filters_time=>0.00011}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000223, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000731}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000614}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000609}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000814}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000709}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00078}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000846}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000637}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000498, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000457, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000464, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00198, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000444, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000306, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000471, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000256, :before_filters_time=>8.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001207, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000209, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>0.000102}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000712}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>0.000871, :action_time=>0.002056}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000719}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000945}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000866}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000784}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000748}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000737}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000627}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000826}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000527, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000498, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000412, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00193, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000855, :before_filters_time=>0.000107}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000281, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000934, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000255, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001559, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000349, :before_filters_time=>0.000119}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000255, :before_filters_time=>9.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000833}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.5e-05, :action_time=>0.001407}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000751}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000921}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000825}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000934}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00075}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000769}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000488, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000382, :before_filters_time=>8.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000388, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002028, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000928, :before_filters_time=>0.000112}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000316, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000509, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000258, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001194, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000296, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000226, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>3.1e-05, :action_time=>0.000872}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000721}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001097}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00071}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000675}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000906}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000746}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>0.000102}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000539, :before_filters_time=>0.000133}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000513, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>5.7e-05, :action_time=>0.000507, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001851, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00044, :before_filters_time=>0.000121}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000348, :before_filters_time=>0.000132}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000549, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000263, :before_filters_time=>8.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00125, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000355, :before_filters_time=>6.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000303, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000919}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000682}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000879}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000749}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000686}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000717}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000691, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000437, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>1.1e-05, :action_time=>0.000555, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001949, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000483, :before_filters_time=>0.000143}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000286, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000617, :before_filters_time=>0.00017}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001029, :before_filters_time=>0.00012}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001185, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00023, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000334, :before_filters_time=>0.000146}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000925, :before_filters_time=>0.000755}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000901}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000671}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000759}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000883}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000662}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000794}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000444, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646, :before_filters_time=>0.000219}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000383, :before_filters_time=>8.7e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000424, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001868, :before_filters_time=>8.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000518, :before_filters_time=>0.000105}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000277, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001104, :before_filters_time=>0.000196}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000734, :before_filters_time=>7.9e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001265, :before_filters_time=>0.000129}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000218, :before_filters_time=>6.5e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0003, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000243, :before_filters_time=>8.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000781}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000685}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000628}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001379}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00067}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.7e-05, :action_time=>0.000802}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000738}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00092}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00056, :before_filters_time=>0.000135}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000491, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000438, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>0.0001}
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002424, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000421, :before_filters_time=>0.000102}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000295, :before_filters_time=>8.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000456, :before_filters_time=>9.8e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001068, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001219, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>6.3e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000295, :before_filters_time=>0.000106}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000228, :before_filters_time=>8.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000868}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000871}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000502, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000508, :before_filters_time=>0.000105}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000458, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.002064, :before_filters_time=>9.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000441, :before_filters_time=>0.000105}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000305, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000431, :before_filters_time=>9.6e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00085, :before_filters_time=>0.00018}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001207, :before_filters_time=>0.000103}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00023, :before_filters_time=>6.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000275, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000223, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000725}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000741}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000604}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002451}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00073}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000873}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001068}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000504, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001099, :before_filters_time=>0.000464}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000421, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000374, :before_filters_time=>8.5e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001958, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000447, :before_filters_time=>0.000104}
- ~ true
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000284, :before_filters_time=>8.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000488, :before_filters_time=>0.000105}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000742, :before_filters_time=>0.0001}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001122, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000191, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>5.4e-05, :action_time=>0.000335, :before_filters_time=>0.000101}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000234, :before_filters_time=>8.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000783}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001054}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000803}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.0007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000652}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000884}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000459, :before_filters_time=>0.000109}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000509, :before_filters_time=>0.000108}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000395, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000389, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00189, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000419, :before_filters_time=>0.0001}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000434, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000524, :before_filters_time=>0.000124}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001402, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001163, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000276, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000222, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000953}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000633}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000783}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000771}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000688}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00048, :before_filters_time=>0.000112}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000487, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000426, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000398, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001949, :before_filters_time=>9.3e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000451, :before_filters_time=>0.000108}
- ~ true
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000268, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000428, :before_filters_time=>9.6e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001116, :before_filters_time=>8.0e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001233, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000227, :before_filters_time=>6.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000298, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>8.8e-05, :action_time=>0.000516, :before_filters_time=>0.000178}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000816}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000824}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000861}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000842}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000755}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000844}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000506, :before_filters_time=>0.000107}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000521, :before_filters_time=>0.000115}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000441, :before_filters_time=>0.000104}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000421, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001869, :before_filters_time=>8.9e-05}
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000416, :before_filters_time=>0.0001}
- ~ true
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>8.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000432, :before_filters_time=>9.7e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000825, :before_filters_time=>8.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.020717, :before_filters_time=>0.000169, :after_filters_time=>1.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001096, :after_filters_time=>1.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000893, :after_filters_time=>1.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000935, :after_filters_time=>1.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000887, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000974, :after_filters_time=>1.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001237, :after_filters_time=>1.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001156, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001017, :after_filters_time=>1.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000897, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000958, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.012368, :before_filters_time=>9.5e-05, :after_filters_time=>2.8e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.013279, :before_filters_time=>0.000139, :after_filters_time=>1.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.018154, :before_filters_time=>0.000115}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000948}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00098}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000709}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000712}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000893}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000665}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.008128, :before_filters_time=>5.9e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.01043, :before_filters_time=>9.8e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000803}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000769}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000793}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000734}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000793}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000637}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000988}
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.006907, :before_filters_time=>6.1e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.011456, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001093, :before_filters_time=>7.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000782}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000606}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000799}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000826}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000707}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000872}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000781}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000723}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.004191, :before_filters_time=>5.9e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.01241, :before_filters_time=>0.000103}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001085, :before_filters_time=>7.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000792}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00061}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0008}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000701}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000789}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000783}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.00578, :before_filters_time=>6.0e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.010708, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001094, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000189, :before_filters_time=>5.6e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000827}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00067}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000619}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000693}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000794}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00089}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.006622, :before_filters_time=>6.2e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.025291, :before_filters_time=>0.000102}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001145, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000231, :before_filters_time=>5.5e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000776}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000638}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000652}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000613}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000694}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000691}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.033133}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000752}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000653}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.006587, :before_filters_time=>7.0e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.012077, :before_filters_time=>0.000109}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001087, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000206, :before_filters_time=>5.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000764}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000612}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000758}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.0008}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.033464}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000838}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ {:after_filters_time=>1.8e-05, :action_time=>0.006827, :before_filters_time=>5.8e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.010973, :before_filters_time=>0.0002}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001143, :before_filters_time=>7.9e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000199, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000289, :before_filters_time=>9.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000683}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000766}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000799}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000923}
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.00672, :before_filters_time=>5.8e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.9e-05, :action_time=>0.011274, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001089, :before_filters_time=>7.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000243, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000214, :before_filters_time=>7.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000771}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000623}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000725}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000627}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.032819}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000724}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000649}
- ~ {:after_filters_time=>1.9e-05, :action_time=>0.00807, :before_filters_time=>6.2e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.018147, :before_filters_time=>0.00032}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001168, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00019, :before_filters_time=>5.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000257, :before_filters_time=>9.2e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000214, :before_filters_time=>7.9e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000909}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001089}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000767}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000703}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.032875}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00081}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.00083}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.006265, :before_filters_time=>6.3e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>3.6e-05, :action_time=>0.013651, :before_filters_time=>0.00011}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001105, :before_filters_time=>8.2e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00021, :before_filters_time=>6.0e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000295, :before_filters_time=>0.000118}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000225, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000593}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00071}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.0007}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000689}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000725}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000677}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000823}
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.006682, :before_filters_time=>7.2e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.010765, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001186, :before_filters_time=>7.8e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000211, :before_filters_time=>6.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000271, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000226, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00074}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000714}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000621}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000713}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000658}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000698}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000637}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000782}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.005819, :before_filters_time=>6.1e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.015373, :before_filters_time=>0.000337}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001187, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000209, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000268, :before_filters_time=>9.6e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000968}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000606}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000619}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000712}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000817}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000894}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.00686, :before_filters_time=>6.2e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.013551, :before_filters_time=>0.000103}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001216, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000191, :before_filters_time=>5.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000261, :before_filters_time=>9.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000215, :before_filters_time=>7.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000731}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000596}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001132}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001335}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000782}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000778}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000937}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001234}
- ~ {:after_filters_time=>1.4e-05, :action_time=>0.008339, :before_filters_time=>6.1e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.012106, :before_filters_time=>0.000108}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001103, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000244, :before_filters_time=>6.1e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000286, :before_filters_time=>9.9e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000222, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000724}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000617}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000785}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000672}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000794}
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.008091, :before_filters_time=>6.4e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.2e-05, :action_time=>0.01343, :before_filters_time=>0.000107}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001104, :before_filters_time=>7.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000228, :before_filters_time=>5.7e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000272, :before_filters_time=>9.5e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000221, :before_filters_time=>8.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000878}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000695}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000681}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000686}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000703}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000707}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000825}
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.004574, :before_filters_time=>6.7e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.011203, :before_filters_time=>0.000101}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00109, :before_filters_time=>7.6e-05}
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000219, :before_filters_time=>7.4e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000277, :before_filters_time=>9.8e-05}
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000224, :before_filters_time=>8.2e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001115}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000723}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000795}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001188}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000798}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001574}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>3.9e-05, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000636}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.0008}
- ~ {:after_filters_time=>1.5e-05, :action_time=>0.006128, :before_filters_time=>6.1e-05}
- ~ Redirecting to: /registrations
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.011866, :before_filters_time=>0.000103}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>7.0e-06, :action_time=>0.00121}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000194}
- ~ {:before_filters_time=>0.000109, :after_filters_time=>6.0e-06, :action_time=>0.000549}
- ~ {:before_filters_time=>0.000562, :after_filters_time=>5.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.002718}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>2.6e-05, :action_time=>0.002232}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001498}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000885}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000756}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000858}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000693}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000835}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>1.3e-05, :action_time=>0.001107}
- ~ {:before_filters_time=>6.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000209}
- ~ {:before_filters_time=>0.000101, :after_filters_time=>6.0e-06, :action_time=>0.000276}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000223}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000946}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000668}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000683}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000637}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000735}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000687}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000777}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06, :action_time=>0.001098}
- ~ {:before_filters_time=>6.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.00021}
- ~ {:before_filters_time=>9.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000265}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001155}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000774}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000642}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000897}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.001201}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00027}
- ~ {:before_filters_time=>0.000111, :after_filters_time=>6.0e-06, :action_time=>0.000303}
- ~ {:before_filters_time=>0.000118, :after_filters_time=>6.0e-06, :action_time=>0.000312}
- ~ {:before_filters_time=>7.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000778}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000698}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000675}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000685}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001013}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001394}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001126}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000206}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>6.0e-06, :action_time=>0.000282}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000235}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.00028}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000731}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00062}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00071}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000711}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000667}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001062}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.001097}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.00028}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000221}
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000285}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000814}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000882}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000693}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000638}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000666}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00068}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000826}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.001104}
- ~ {:before_filters_time=>6.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000226}
- ~ {:before_filters_time=>0.0001, :after_filters_time=>6.0e-06, :action_time=>0.000276}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>6.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000716}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000987}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000686}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000663}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000642}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000901}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.001113}
- ~ {:before_filters_time=>6.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000226}
- ~ {:before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000334}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000261}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000951}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000642}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000831}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.001156}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000194}
- ~ {:before_filters_time=>0.000103, :after_filters_time=>6.0e-06, :action_time=>0.000285}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000224}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000281}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000745}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000908}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000632}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000697}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000694}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000789}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001104}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000192}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000257}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000217}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>0.000148, :action_time=>0.000915}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002336}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000692}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000743}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.00099}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>7.0e-06, :action_time=>0.001211}
- ~ {:before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000206}
- ~ {:before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000288}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000262}
- ~ {:before_filters_time=>6.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000255}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000807}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00103}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000724}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000649}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000635}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000824}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001103}
- ~ {:before_filters_time=>6.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000223}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000232}
- ~ {:before_filters_time=>6.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000348}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002541}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000676}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000673}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000699}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000644}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000669}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000668}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000857}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.001137}
- ~ {:before_filters_time=>6.3e-05, :after_filters_time=>5.0e-06, :action_time=>0.000371}
- ~ {:before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000264}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.00022}
- ~ {:before_filters_time=>7.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000345}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.001284}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001989}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000718}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000657}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000785}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001199}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000258}
- ~ {:before_filters_time=>0.000104, :after_filters_time=>7.0e-06, :action_time=>0.000324}
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>5.0e-06, :action_time=>0.000232}
- ~ {:before_filters_time=>6.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000345}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000804}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000761}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000641}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000882}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000797}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000905}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000792}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001125}
- ~ {:before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000193}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000217}
- ~ {:before_filters_time=>6.9e-05, :after_filters_time=>6.0e-06, :action_time=>0.000391}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000904}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000704}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002321}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001026}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000816}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.001125}
- ~ {:before_filters_time=>5.8e-05, :after_filters_time=>5.0e-06, :action_time=>0.000209}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06, :action_time=>0.000222}
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000352}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001876}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000913}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00065}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000653}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000787}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001114, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000236, :before_filters_time=>6.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000284, :before_filters_time=>9.7e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00034, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00075, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00094, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000932, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000641, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000653, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.033754, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000709, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001127, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00019, :before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000632, :before_filters_time=>0.000112, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000225, :before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000734, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000662, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000746, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000695, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000804, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000659, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.035293, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000808, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001147, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000197, :before_filters_time=>5.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>9.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000738, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000671, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000653, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00109, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000664, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000721, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.032712, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000682, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001112, :before_filters_time=>7.9e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000208, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000276, :before_filters_time=>9.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001328, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001699, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00067, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000655, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00069, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000768, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.031554, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000764, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00133, :before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000209, :before_filters_time=>6.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000227, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000738, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000687, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000641, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000636, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.031692, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000812, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001095, :before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000279, :before_filters_time=>0.000103, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000358, :before_filters_time=>0.000175, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000231, :before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001033, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000811, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000687, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000743, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000784, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000717, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000657, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000677, :after_filters_time=>2.1e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.012898, :before_filters_time=>0.000101, :after_filters_time=>1.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001182, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00026, :before_filters_time=>9.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>9.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000722, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001655, :after_filters_time=>1.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000795, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000657, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00101, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000645, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000632, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000458, :before_filters_time=>5.9e-05, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.01087, :before_filters_time=>0.0001, :after_filters_time=>1.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001133, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000217, :before_filters_time=>5.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000321, :before_filters_time=>0.000142, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000269, :before_filters_time=>8.3e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002349, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002116, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000718, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000662, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000874, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000814, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000778, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000657, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000453, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.011919, :before_filters_time=>0.000106, :after_filters_time=>1.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001138, :before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00027, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00034, :before_filters_time=>0.000154, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000232, :before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000725, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000674, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000673, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000648, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000794, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000683, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001092, :after_filters_time=>2.8e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000675, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000431, :before_filters_time=>5.6e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.01182, :before_filters_time=>0.000101, :after_filters_time=>1.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001111, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000213, :before_filters_time=>6.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000268, :before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.004072, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001658, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000697, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000702, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000781, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000687, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000683, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000646, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000464, :before_filters_time=>6.1e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.013907, :before_filters_time=>0.000155, :after_filters_time=>1.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001084, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000192, :before_filters_time=>5.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000279, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000332, :before_filters_time=>0.000128, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00103, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000643, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002273, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000804, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000861, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000654, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000716, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000638, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000449, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000271, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.012385, :before_filters_time=>0.000107, :after_filters_time=>1.5e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0011, :before_filters_time=>7.4e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000211, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000265, :before_filters_time=>9.1e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000218, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001231, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000663, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000674, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000658, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000817, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000689, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000658, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000629, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000458, :before_filters_time=>5.9e-05, :after_filters_time=>7.0e-06}
- ~ true
- ~ {:action_time=>0.000344, :before_filters_time=>0.00012, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.018343, :before_filters_time=>0.000105, :after_filters_time=>1.1e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.01114, :before_filters_time=>0.000103, :after_filters_time=>1.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001092, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000249, :before_filters_time=>5.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000217, :before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000726, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002063, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00073, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000736, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000845, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000669, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000673, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000696, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00047, :before_filters_time=>5.9e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000458, :before_filters_time=>0.000119, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.009419, :before_filters_time=>9.2e-05, :after_filters_time=>1.6e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.01388, :before_filters_time=>0.000157, :after_filters_time=>1.2e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00109, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000191, :before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000257, :before_filters_time=>9.1e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000219, :before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000755, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000656, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000678, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000645, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000784, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000791, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000657, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000631, :before_filters_time=>6.9e-05, :after_filters_time=>7.0e-06}
- ~ true
- ~ {:action_time=>0.000326, :before_filters_time=>0.000128, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00953500000000007, :before_filters_time=>0.000366, :after_filters_time=>1.6e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.015291, :before_filters_time=>0.00016, :after_filters_time=>1.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001122, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000192, :before_filters_time=>5.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000879, :before_filters_time=>0.000464, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000288, :before_filters_time=>8.9e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000718, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000918, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000686, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000755, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000803, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000699, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001174, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00071, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00066, :before_filters_time=>6.8e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000279, :before_filters_time=>7.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.007892, :before_filters_time=>0.000107, :after_filters_time=>1.0e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.02495, :before_filters_time=>0.000727, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001095, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000248, :before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00028, :before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000244, :before_filters_time=>0.0001, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000956, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002877, :after_filters_time=>1.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00075, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000711, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000846, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000868, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00067, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000655, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000453, :before_filters_time=>5.9e-05, :after_filters_time=>7.0e-06}
- ~ true
- ~ {:action_time=>0.000438, :before_filters_time=>0.00011, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.013376, :before_filters_time=>0.000104, :after_filters_time=>1.4e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.011393, :before_filters_time=>0.000162, :after_filters_time=>9.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0011, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000191, :before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00028, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000257, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.003811, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001749, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000686, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000655, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00087, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000807, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000656, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000642, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000447, :before_filters_time=>5.8e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000324, :before_filters_time=>7.8e-05, :after_filters_time=>1.9e-05}
- ~ {:action_time=>0.016705, :before_filters_time=>0.000126, :after_filters_time=>1.0e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.011184, :before_filters_time=>0.000121, :after_filters_time=>1.3e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001096, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000193, :before_filters_time=>5.4e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>8.7e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002316, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000637, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000695, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00073, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000796, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000709, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000787, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000666, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000454, :before_filters_time=>5.8e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000703, :before_filters_time=>0.000118, :after_filters_time=>9.0e-06}
- ~ {:action_time=>0.011703, :before_filters_time=>0.000122, :after_filters_time=>1.6e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.012201, :before_filters_time=>0.000134, :after_filters_time=>1.6e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.0011, :before_filters_time=>8.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000244, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001029, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000646, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000706, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000678, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000807, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000792, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000681, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00065, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000457, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000277, :before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.01929, :before_filters_time=>9.1e-05, :after_filters_time=>1.4e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.012431, :before_filters_time=>0.000112, :after_filters_time=>1.4e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001097, :before_filters_time=>7.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000262, :before_filters_time=>6.3e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000283, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001031, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000944, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000838, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000662, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001063, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000734, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000671, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000745, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000451, :before_filters_time=>6.0e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.00048, :before_filters_time=>0.000118, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.014504, :before_filters_time=>9.5e-05, :after_filters_time=>1.8e-05}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.001242, :before_filters_time=>0.000193, :after_filters_time=>1.1e-05}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.8e-05, :after_filters_time=>7.0e-06, :action_time=>0.001616}
- ~ true
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.00027}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000793}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00109, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000202, :before_filters_time=>5.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000271, :before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000334, :before_filters_time=>8.6e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000767, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000636, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000732, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000719, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000948, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000696, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000658, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000733, :after_filters_time=>1.3e-05}
- ~ {:action_time=>0.000502, :before_filters_time=>6.1e-05, :after_filters_time=>6.0e-06}
- ~ true
- ~ {:action_time=>0.000273, :before_filters_time=>7.7e-05, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.000699, :before_filters_time=>7.5e-05, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.001324}
- ~ true
- ~ {:before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000318}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000395}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>0.000102, :after_filters_time=>8.0e-06, :action_time=>0.000865}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>6.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.001527}
- ~ true
- ~ {:before_filters_time=>0.000266, :after_filters_time=>7.0e-06, :action_time=>0.000479}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000386}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>0.000104, :after_filters_time=>9.0e-06, :action_time=>0.000884}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001106, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000196, :before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000267, :before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>8.1e-05, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00073, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000663, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000667, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000638, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000647, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000658, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.036345, :after_filters_time=>1.0e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000853, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>5.0e-06, :action_time=>0.001087}
- ~ {:before_filters_time=>8.4e-05, :after_filters_time=>5.0e-06, :action_time=>0.000261}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000265}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000226}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000744}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000737}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000679}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000654}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000648}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000659}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.001244}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000224}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>8.8e-05, :after_filters_time=>6.0e-06, :action_time=>0.00024}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000733}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000678}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000634}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000643}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000645}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000648}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.001094}
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>5.0e-06, :action_time=>0.000252}
- ~ {:before_filters_time=>0.000155, :after_filters_time=>6.0e-06, :action_time=>0.000373}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06, :action_time=>0.000224}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000747}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000682}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000757}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000655}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00064}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00069}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00066}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.001086}
- ~ {:before_filters_time=>6.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000216}
- ~ {:before_filters_time=>9.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.000325}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000221}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000903}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000719}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000681}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000635}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000637}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000639}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000763}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000671}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.001098}
- ~ {:before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06, :action_time=>0.000198}
- ~ {:before_filters_time=>0.000101, :after_filters_time=>5.0e-06, :action_time=>0.000273}
- ~ {:before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06, :action_time=>0.000219}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000994}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000691}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000682}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00066}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000631}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000747}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000665}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000679}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.001106}
- ~ {:before_filters_time=>5.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000204}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06, :action_time=>0.000268}
- ~ {:before_filters_time=>0.000106, :after_filters_time=>5.0e-06, :action_time=>0.000265}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000745}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.001262}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000812}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000646}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000753}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00068}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001297, :before_filters_time=>8.5e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000347, :before_filters_time=>6.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000248, :before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000741, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001006, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000742, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000751, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000672, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00067, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.033112, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000719, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001158, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000206, :before_filters_time=>5.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000266, :before_filters_time=>0.000122, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000771, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000677, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.0007, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000712, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00068, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.034982, :after_filters_time=>1.1e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000806, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001104, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000194, :before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000282, :before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000216, :before_filters_time=>7.8e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000732, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001017, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000697, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000629, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000714, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000652, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.031941, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000819, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001105, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0002, :before_filters_time=>5.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000286, :before_filters_time=>0.0001, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000735, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000658, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000779, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000649, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000639, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000654, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.033042, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000737, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001153, :before_filters_time=>9.3e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000215, :before_filters_time=>5.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00027, :before_filters_time=>9.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000786, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.002434, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000927, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000696, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000664, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000668, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000656, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000718, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001113, :before_filters_time=>7.7e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000213, :before_filters_time=>5.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000272, :before_filters_time=>9.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000237, :before_filters_time=>8.2e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00077, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000671, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000893, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000741, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000678, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000724, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000663, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000641, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.001514}
- ~ true
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>8.0e-06, :action_time=>0.000265}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>7.0e-06, :action_time=>0.000782}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.001249}
- ~ true
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000273}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>1.1e-05, :action_time=>0.000744}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.001288}
- ~ true
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000304}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000309}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>8.9e-05, :after_filters_time=>7.0e-06, :action_time=>0.000768}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.00132}
- ~ true
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>6.0e-06, :action_time=>0.000255}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>6.0e-06, :action_time=>0.000354}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000734}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.3e-05, :after_filters_time=>7.0e-06, :action_time=>0.001369}
- ~ true
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ {:before_filters_time=>9.2e-05, :after_filters_time=>7.0e-06, :action_time=>0.000305}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>7.7e-05, :after_filters_time=>7.0e-06, :action_time=>0.000805}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001144, :before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000201, :before_filters_time=>5.6e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000277, :before_filters_time=>9.9e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.00023, :before_filters_time=>8.1e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000756, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000747, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000813, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000654, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000644000000000089, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000648, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000738, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000782, :after_filters_time=>8.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>7.0e-06, :action_time=>0.001385}
- ~ true
- ~ {:before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06, :action_time=>0.000256}
- ~ {:before_filters_time=>9.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.000315}
- ~ Redirecting to: /registrations
- ~ {:before_filters_time=>8.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.000793}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:before_filters_time=>7.6e-05, :after_filters_time=>7.0e-06, :action_time=>0.001182}
- ~ {:before_filters_time=>5.9e-05, :after_filters_time=>2.1e-05, :action_time=>0.000229}
- ~ {:before_filters_time=>0.000116, :after_filters_time=>5.0e-06, :action_time=>0.0003}
- ~ {:before_filters_time=>8.1e-05, :after_filters_time=>6.0e-06, :action_time=>0.000228}
- ~ {:before_filters_time=>7.5e-05, :after_filters_time=>6.0e-06, :action_time=>0.000295}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000781}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000728}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000805}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000722}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000656}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000651}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000649}
- ~ Redirecting to: /openid/consumer
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000651}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001137, :before_filters_time=>9.0e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000204, :before_filters_time=>5.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000278, :before_filters_time=>9.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000275, :before_filters_time=>0.000124, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000254, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000738, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000673, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.03303, :after_filters_time=>1.3e-05}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000754, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00068, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000686, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000667, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000725, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001115, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000206, :before_filters_time=>5.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000274, :before_filters_time=>9.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000224, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000254, :before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00094, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000673, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000859, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000687, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000766, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00078, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000665, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000668, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.00111, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000202, :before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000318, :before_filters_time=>0.000109, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000235, :before_filters_time=>8.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00027, :before_filters_time=>7.6e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000754, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000767, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00098, :after_filters_time=>9.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000734, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000682, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000685, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000719, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000694, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001201, :before_filters_time=>7.8e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.0002, :before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000263, :before_filters_time=>9.4e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>8.0e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000254, :before_filters_time=>7.4e-05, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00072, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000675, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.001269, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000673, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000668, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000787, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000708, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000742, :after_filters_time=>6.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001152, :before_filters_time=>7.7e-05, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000202, :before_filters_time=>5.7e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000264, :before_filters_time=>9.3e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.00022, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000259, :before_filters_time=>7.4e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00073, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000679, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000935, :after_filters_time=>8.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000746, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000705, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000894, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000657, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000667, :after_filters_time=>7.0e-06}
- ~ Compiling routes...
- ~ Using 'share-nothing' cookie sessions (4kb limit per client)
- ~ {:action_time=>0.001206, :before_filters_time=>7.7e-05, :after_filters_time=>8.0e-06}
- ~ {:action_time=>0.000202, :before_filters_time=>5.8e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000269, :before_filters_time=>9.5e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000221, :before_filters_time=>7.9e-05, :after_filters_time=>5.0e-06}
- ~ {:action_time=>0.000243, :before_filters_time=>7.1e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000795, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000667, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000726, :after_filters_time=>7.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.00064, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000782, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000739, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000732, :after_filters_time=>6.0e-06}
- ~ Redirecting to: /openid/consumer
- ~ {:action_time=>0.000661, :after_filters_time=>6.0e-06}
- ~ {:action_time=>0.000546, :before_filters_time=>6.5e-05, :after_filters_time=>8.0e-06}
- ~ true
- ~ {:action_time=>0.00029, :before_filters_time=>8.4e-05, :after_filters_time=>7.0e-06}
- ~ {:action_time=>0.000299, :before_filters_time=>9.2e-05, :after_filters_time=>5.0e-06}
- ~ Redirecting to: /registrations
- ~ {:action_time=>0.000689, :before_filters_time=>8.6e-05, :after_filters_time=>6.0e-06}
diff --git a/packages/chef-server/public/images/merb.jpg b/packages/chef-server/public/images/merb.jpg
deleted file mode 100644
index a19dcf4048..0000000000
--- a/packages/chef-server/public/images/merb.jpg
+++ /dev/null
Binary files differ
diff --git a/packages/chef-server/public/merb.fcgi b/packages/chef-server/public/merb.fcgi
deleted file mode 100644
index 9804e0f36d..0000000000
--- a/packages/chef-server/public/merb.fcgi
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'rubygems'
-require 'merb-core'
-
-# this is Merb.root, change this if you have some funky setup.
-merb_root = File.expand_path(File.dirname(__FILE__) / '../')
-
-# If the fcgi process runs as apache, make sure
-# we have an inlinedir set for Rubyinline action-args to work
-unless ENV["INLINEDIR"] || ENV["HOME"]
- tmpdir = merb_root / "tmp"
- unless File.directory?(tmpdir)
- Dir.mkdir(tmpdir)
- end
- ENV["INLINEDIR"] = tmpdir
-end
-
-# start merb with the fcgi adapter, add options or change the log dir here
-Merb.start(:adapter => 'fcgi',
- :merb_root => merb_root,
- :log_file => merb_root /'log'/'merb.log') \ No newline at end of file
diff --git a/packages/chef-server/public/stylesheets/master.css b/packages/chef-server/public/stylesheets/master.css
deleted file mode 100644
index 70580148a7..0000000000
--- a/packages/chef-server/public/stylesheets/master.css
+++ /dev/null
@@ -1,153 +0,0 @@
-body {
- font-family: Arial, Verdana, sans-serif;
- font-size: 12px;
- background-color: #fff;
- margin: ;
-}
-html {
- height: 100%;
- margin-bottom: 1px;
-}
-#container {
- width: 80%;
- text-align: left;
- background-color: #fff;
- margin-right: auto;
- margin-left: auto;
-}
-#header-container {
- width: 100%;
- padding-top: 15px;
-}
-#header-container h1, #header-container h2 {
- margin-left: 6px;
- margin-bottom: 6px;
-}
-.spacer {
- width: 100%;
- height: 15px;
-}
-hr {
- border: 0px;
- color: #ccc;
- background-color: #cdcdcd;
- height: 1px;
- width: 100%;
- text-align: left;
-}
-h1 {
- font-size: 28px;
- color: #c55;
- background-color: #fff;
- font-family: Arial, Verdana, sans-serif;
- font-weight: 300;
-}
-h2 {
- font-size: 15px;
- color: #999;
- font-family: Arial, Verdana, sans-serif;
- font-weight: 300;
- background-color: #fff;
-}
-h3 {
- color: #4d9b12;
- font-size: 15px;
- text-align: left;
- font-weight: 300;
- padding: 5px;
- margin-top: 5px;
-}
-
-#left-container {
- float: left;
- width: 250px;
- background-color: #FFFFFF;
- color: black;
-}
-
-#left-container h3 {
- color: #c55;
-}
-
-#main-container {
- margin: 5px 5px 5px 260px;
- padding: 15px;
- border-left: 1px solid silver;
- min-height: 400px;
-}
-p {
- color: #000;
- background-color: #fff;
- line-height: 20px;
- padding: 5px;
-}
-a {
- color: #4d9b12;
- background-color: #fff;
- text-decoration: none;
-}
-a:hover {
- color: #4d9b12;
- background-color: #fff;
- text-decoration: underline;
-}
-#footer-container {
- clear: both;
- font-size: 12px;
- font-family: Verdana, Arial, sans-serif;
-}
-.right {
- float: right;
- font-size: 100%;
- margin-top: 5px;
- color: #999;
- background-color: #fff;
-}
-.left {
- float: left;
- font-size: 100%;
- margin-top: 5px;
- color: #999;
- background-color: #fff;
-}
-#main-container ul {
- margin-left: 3.0em;
-}
-
-div.resource_collection {
- border: 1px solid #999;
- float: left;
- clear: both;
- margin: 10px;
- padding: 5px;
-}
-
-div.resource {
- border-top: 1px solid #999;
- float: left;
- clear: both;
-}
-
-div.attr_group {
- float: left;
- clear: both;
-}
-
-td.attr_name {
- font-weight: bold;
- margin-right: 10px;
- border-right: 1px solid #999;
-}
-
-td.attr_value {
- padding-left: 5px;
- border-top: 1px solid #999;
-}
-
-div.node {
- float: left;
- clear: both;
- margin: 10px;
- padding: 5px;
- border: 1px solid #999;
-} \ No newline at end of file
diff --git a/packages/chef-server/spec/authenticated_system_spec_helper.rb b/packages/chef-server/spec/authenticated_system_spec_helper.rb
deleted file mode 100644
index a1a484da0f..0000000000
--- a/packages/chef-server/spec/authenticated_system_spec_helper.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-Merb::Config.use do |c|
- c[:session_store] = "memory"
-end
-
-
-class Hash
-
- def with( opts )
- self.merge(opts)
- end
-
- def without(*args)
- self.dup.delete_if{ |k,v| args.include?(k)}
- end
-
-end \ No newline at end of file
diff --git a/packages/chef-server/spec/controllers/log/merb_test.log b/packages/chef-server/spec/controllers/log/merb_test.log
deleted file mode 100644
index 646c8bb701..0000000000
--- a/packages/chef-server/spec/controllers/log/merb_test.log
+++ /dev/null
@@ -1,3 +0,0 @@
-Tue, 27 May 2008 00:52:34 GMT ~ info ~ Logfile created
- ~ Not Using Sessions
- ~ Not Using Sessions
diff --git a/packages/chef-server/spec/controllers/nodes_spec.rb b/packages/chef-server/spec/controllers/nodes_spec.rb
deleted file mode 100644
index a86fa4138c..0000000000
--- a/packages/chef-server/spec/controllers/nodes_spec.rb
+++ /dev/null
@@ -1,214 +0,0 @@
-require File.join(File.dirname(__FILE__), "..", 'spec_helper.rb')
-
-describe Nodes, "index action" do
- it "should get a list of all the nodes" do
- Chef::Node.should_receive(:list).and_return(["one"])
- dispatch_to(Nodes, :index) do |c|
- c.stub!(:display)
- end
- end
-
- it "should send a list of nodes to display" do
- Chef::Node.stub!(:list).and_return(["one"])
- dispatch_to(Nodes, :index) do |c|
- c.should_receive(:display).with(["one"])
- end
- end
-end
-
-describe Nodes, "show action" do
- it "should load a node from the filestore based on the id" do
- node = stub("Node", :null_object => true)
- Chef::Node.should_receive(:load).with("bond").once.and_return(node)
- dispatch_to(Nodes, :show, { :id => "bond" }) do |c|
- c.should_receive(:display).with(node).once.and_return(true)
- end
- end
-
- it "should return 200 on a well formed request" do
- node = stub("Node", :null_object => true)
- Chef::Node.should_receive(:load).with("bond").once.and_return(node)
- controller = dispatch_to(Nodes, :show, { :id => "bond" }) do |c|
- c.stub!(:display)
- end
- controller.status.should eql(200)
- end
-
- it "should raise a BadRequest if the id is not found" do
- Chef::Node.should_receive(:load).with("bond").once.and_raise(RuntimeError)
- lambda {
- dispatch_to(Nodes, :show, { :id => "bond" })
- }.should raise_error(Merb::ControllerExceptions::BadRequest)
- end
-end
-
-describe Nodes, "create action" do
- it "should create a node from an inflated object" do
- mnode = mock("Node", :null_object => true)
- mnode.stub!(:name).and_return("bond")
- mnode.should_receive(:save).once.and_return(true)
- controller = dispatch_to(Nodes, :create) do |c|
- c.stub!(:params).and_return({ "inflated_object" => mnode })
- c.stub!(:session).and_return({
- :openid => 'http://localhost/openid/server/node/bond',
- :level => :node,
- :node_name => "bond",
- })
- c.stub!(:display)
- end
- controller.status.should eql(202)
- end
-
- it "should raise an exception if it cannot inflate an object" do
- lambda {
- dispatch_to(Nodes, :create) do |c|
- c.stub!(:params).and_return({ })
- end
- }.should raise_error(Merb::Controller::BadRequest)
- end
-end
-
-describe Nodes, "update action" do
- it "should update a node from an inflated object" do
- mnode = mock("Node", :null_object => true)
- mnode.stub!(:name).and_return("one")
- Chef::FileStore.should_receive(:store).with("node", "one", mnode).once.and_return(true)
- controller = dispatch_to(Nodes, :update, { :id => "one" }) do |c|
- c.stub!(:session).and_return({
- :openid => 'http://localhost/openid/server/node/one',
- :level => :node,
- :node_name => "one",
- })
- c.stub!(:params).and_return({ "inflated_object" => mnode })
- c.stub!(:display)
- end
- controller.status.should eql(202)
- end
-
- it "should raise an exception if it cannot inflate an object" do
- lambda { dispatch_to(Nodes, :update) }.should raise_error(Merb::Controller::BadRequest)
- end
-end
-
-describe Nodes, "destroy action" do
- def do_destroy
- dispatch_to(Nodes, :destroy, { :id => "one" }) do |c|
- c.stub!(:display)
- end
- end
-
- it "should load the node it's about to destroy from the filestore" do
- mnode = stub("Node", :null_object => true)
- Chef::FileStore.should_receive(:load).with("node", "one").once.and_return(mnode)
- Chef::FileStore.stub!(:delete)
- do_destroy
- end
-
- it "should raise an exception if it cannot find the node to destroy" do
- Chef::FileStore.should_receive(:load).with("node", "one").once.and_raise(RuntimeError)
- lambda { do_destroy }.should raise_error(Merb::Controller::BadRequest)
- end
-
- it "should remove the node from the filestore" do
- mnode = stub("Node", :null_object => true)
- Chef::FileStore.stub!(:load).with("node", "one").and_return(mnode)
- Chef::FileStore.should_receive(:delete).with("node", "one")
- do_destroy
- end
-
- it "should remove the node from the search index" do
- mnode = stub("Node", :null_object => true)
- Chef::FileStore.stub!(:load).with("node", "one").and_return(mnode)
- Chef::FileStore.stub!(:delete)
- do_destroy
- end
-
- it "should return the node it just deleted" do
- mnode = stub("Node", :null_object => true)
- Chef::FileStore.stub!(:load).with("node", "one").and_return(mnode)
- Chef::FileStore.stub!(:delete)
- dispatch_to(Nodes, :destroy, { :id => "one" }) do |c|
- c.should_receive(:display).once.with(mnode)
- end
- end
-
- it "should return a status of 202" do
- mnode = stub("Node", :null_object => true)
- Chef::FileStore.stub!(:load).with("node", "one").and_return(mnode)
- Chef::FileStore.stub!(:delete)
- controller = do_destroy
- controller.status.should eql(202)
- end
-end
-
-describe Nodes, "compile action" do
- before(:each) do
- @compile = stub("Compile", :null_object => true)
- @node = stub("Node", :null_object => true)
- @node.stub!(:[]).and_return(true)
- @node.stub!(:[]=).and_return(true)
- @node.stub!(:recipes).and_return([])
- @compile.stub!(:load_definitions).and_return(true)
- @compile.stub!(:load_recipes).and_return(true)
- @compile.stub!(:collection).and_return([])
- @compile.stub!(:node, @node)
- @compile.stub!(:load_node).and_return(true)
- @stored_node = stub("Stored Node", :null_object => true)
- end
-
- def do_compile
- Chef::FileStore.stub!(:store).and_return(true)
- Chef::FileStore.stub!(:load).and_return(@stored_node)
- Chef::Compile.stub!(:new).and_return(@compile)
- dispatch_to(Nodes, :compile, { :id => "one" }) do |c|
- c.stub!(:display)
- end
- end
-
- it "should load the node from the node resource" do
- @compile.should_receive(:load_node).with("one").and_return(true)
- do_compile
- end
-
- it "should merge the data with the currently stored node" do
- node1 = Chef::Node.new
- node1.name "adam"
- node1.music "crowe"
- node1.recipes << "monkey"
- @compile.stub!(:node).and_return(node1)
- @stored_node = Chef::Node.new
- @stored_node.name "adam"
- @stored_node.music "crown"
- @stored_node.woot "woot"
- @stored_node.recipes << "monkeysoup"
- do_compile
- node1.name.should eql("adam")
- node1.music.should eql("crown")
- node1.woot.should eql("woot")
- node1.recipes.should eql([ "monkey", "monkeysoup" ])
- end
-
- it "should load definitions" do
- @compile.should_receive(:load_definitions)
- do_compile
- end
-
- it "should load recipes" do
- @compile.should_receive(:load_recipes)
- do_compile
- end
-
- it "should display the collection and node object" do
- Chef::FileStore.stub!(:load).and_return(@stored_node)
- Chef::Compile.stub!(:new).and_return(@compile)
- dispatch_to(Nodes, :compile, { :id => "one" }) do |c|
- c.should_receive(:display).with({ :collection => [], :node => nil })
- end
- end
-
- it "should return 200" do
- controller = do_compile
- controller.status.should eql(200)
- end
-
-end \ No newline at end of file
diff --git a/packages/chef-server/spec/controllers/openid_consumer_spec.rb b/packages/chef-server/spec/controllers/openid_consumer_spec.rb
deleted file mode 100644
index a93cad4191..0000000000
--- a/packages/chef-server/spec/controllers/openid_consumer_spec.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require File.join(File.dirname(__FILE__), "..", 'spec_helper.rb')
-
-describe OpenidConsumer, "check_valid_openid_provider method" do
- it "should confirm the openid provider if the openid_providers config is nil" do
- Chef::Config[:openid_providers] = nil
- c = OpenidConsumer.new(true)
- c.send(:check_valid_openid_provider, "monkeyid").should eql(true)
- end
-
- it "should return true if the openid provider is in openid_providers list" do
- Chef::Config[:openid_providers] = [ 'monkeyid' ]
- c = OpenidConsumer.new(true)
- c.send(:check_valid_openid_provider, "monkeyid").should eql(true)
- end
-
- it "should return true if the openid provider is in openid_providers list with http://" do
- Chef::Config[:openid_providers] = [ 'monkeyid' ]
- c = OpenidConsumer.new(true)
- c.send(:check_valid_openid_provider, "http://monkeyid").should eql(true)
- end
-
- it "should raise an exception if the openid provider is not in openid_providers list" do
- Chef::Config[:openid_providers] = [ 'monkeyid' ]
- c = OpenidConsumer.new(true)
- lambda {
- c.send(:check_valid_openid_provider, "monkey")
- }.should raise_error(Merb::Controller::Unauthorized)
- end
-end \ No newline at end of file
diff --git a/packages/chef-server/spec/controllers/openid_register_spec.rb b/packages/chef-server/spec/controllers/openid_register_spec.rb
deleted file mode 100644
index 6822722868..0000000000
--- a/packages/chef-server/spec/controllers/openid_register_spec.rb
+++ /dev/null
@@ -1,93 +0,0 @@
-require File.join(File.dirname(__FILE__), "..", 'spec_helper.rb')
-
-describe OpenidRegister, "index action" do
- it "should get a list of all registered nodes" do
- Chef::OpenIDRegistration.should_receive(:list).with(true).and_return(["one"])
- dispatch_to(OpenidRegister, :index) do |c|
- c.stub!(:display)
- end
- end
-end
-
-describe OpenidRegister, "show action" do
- it "should raise a 404 if the nodes registration is not found" do
- Chef::OpenIDRegistration.should_receive(:load).with("foo").and_raise(RuntimeError)
- lambda {
- dispatch_to(OpenidRegister, :show, { :id => "foo" })
- }.should raise_error(Merb::ControllerExceptions::NotFound)
- end
-
- it "should call display on the node registration" do
- Chef::OpenIDRegistration.stub!(:load).and_return(true)
- dispatch_to(OpenidRegister, :show, { :id => "foo" }) do |c|
- c.should_receive(:display).with(true)
- end
- end
-end
-
-describe OpenidRegister, "create action" do
- def do_create
- dispatch_to(OpenidRegister, :create, { :id => "foo", :password => "beck" }) do |c|
- c.stub!(:display)
- end
- end
-
- it "should require an id to register" do
- lambda {
- dispatch_to(OpenidRegister, :create, { :password => "beck" })
- }.should raise_error(Merb::ControllerExceptions::BadRequest)
- end
-
- it "should require a password to register" do
- lambda {
- dispatch_to(OpenidRegister, :create, { :id => "foo" })
- }.should raise_error(Merb::ControllerExceptions::BadRequest)
- end
-
- it "should return 400 if a node is already registered" do
- Chef::OpenIDRegistration.should_receive(:has_key?).with("foo").and_return(true)
- lambda {
- dispatch_to(OpenidRegister, :create, { :id => "foo", :password => "beck" })
- }.should raise_error(Merb::ControllerExceptions::BadRequest)
- end
-
- it "should store the registration in a new Chef::OpenIDRegistration" do
- mock_reg = mock("Chef::OpenIDRegistration", :null_object => true)
- mock_reg.should_receive(:name=).with("foo").and_return(true)
- mock_reg.should_receive(:set_password).with("beck").and_return(true)
- mock_reg.should_receive(:save).and_return(true)
- Chef::OpenIDRegistration.stub!(:has_key?).and_return(false)
- Chef::OpenIDRegistration.should_receive(:new).and_return(mock_reg)
- do_create
- end
-end
-
-describe OpenidRegister, "update action" do
- it "should raise a 400 error" do
- lambda {
- dispatch_to(OpenidRegister, :update)
- }
- end
-end
-
-describe OpenidRegister, "destroy action" do
- def do_destroy
- dispatch_to(OpenidRegister, :destroy, { :id => "foo" }) do |c|
- c.stub!(:display)
- end
- end
-
- it "should return 400 if it cannot find the registration" do
- Chef::OpenIDRegistration.should_receive(:load).and_raise(ArgumentError)
- lambda {
- do_destroy
- }.should raise_error(Merb::ControllerExceptions::BadRequest)
- end
-
- it "should delete the registration from the store" do
- mock_reg = mock("OpenIDRegistration")
- mock_reg.should_receive(:destroy).and_return(true)
- Chef::OpenIDRegistration.should_receive(:load).with("foo").and_return(mock_reg)
- do_destroy
- end
-end \ No newline at end of file
diff --git a/packages/chef-server/spec/helpers/nodes_helpers.rb b/packages/chef-server/spec/helpers/nodes_helpers.rb
deleted file mode 100644
index fb68a5e787..0000000000
--- a/packages/chef-server/spec/helpers/nodes_helpers.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require File.join(File.dirname(__FILE__), "..", 'spec_helper.rb')
-
-describe Merb::NodesHelper do
-
-end \ No newline at end of file
diff --git a/packages/chef-server/spec/log/merb_test.log b/packages/chef-server/spec/log/merb_test.log
deleted file mode 100644
index dbd7cd0dce..0000000000
--- a/packages/chef-server/spec/log/merb_test.log
+++ /dev/null
@@ -1,2 +0,0 @@
-Tue, 27 May 2008 00:52:46 GMT ~ info ~ Logfile created
- ~ Not Using Sessions
diff --git a/packages/chef-server/spec/spec.opts b/packages/chef-server/spec/spec.opts
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/chef-server/spec/spec.opts
+++ /dev/null
diff --git a/packages/chef-server/spec/spec_helper.rb b/packages/chef-server/spec/spec_helper.rb
deleted file mode 100644
index d265d70ddf..0000000000
--- a/packages/chef-server/spec/spec_helper.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require 'rubygems'
-require 'merb-core'
-require 'spec' # Satiates Autotest and anyone else not using the Rake tasks
-
-Merb.start_environment(:testing => true, :adapter => 'runner', :environment => ENV['MERB_ENV'] || 'test')
-
-Spec::Runner.configure do |config|
- config.include(Merb::Test::ViewHelper)
- config.include(Merb::Test::RouteHelper)
- config.include(Merb::Test::ControllerHelper)
-end
diff --git a/packages/chef-server/spec/views/nodes/delete.html.erb_spec.rb b/packages/chef-server/spec/views/nodes/delete.html.erb_spec.rb
deleted file mode 100644
index 33a0c3631f..0000000000
--- a/packages/chef-server/spec/views/nodes/delete.html.erb_spec.rb
+++ /dev/null
@@ -1 +0,0 @@
-require File.join(File.dirname(__FILE__), "../..", 'spec_helper.rb') \ No newline at end of file
diff --git a/packages/chef-server/spec/views/nodes/edit.html.erb_spec.rb b/packages/chef-server/spec/views/nodes/edit.html.erb_spec.rb
deleted file mode 100644
index a931e8e519..0000000000
--- a/packages/chef-server/spec/views/nodes/edit.html.erb_spec.rb
+++ /dev/null
@@ -1 +0,0 @@
-require File.join(File.dirname(__FILE__), "../..", 'spec_helper.rb')
diff --git a/packages/chef-server/spec/views/nodes/index.html.erb_spec.rb b/packages/chef-server/spec/views/nodes/index.html.erb_spec.rb
deleted file mode 100644
index 33a0c3631f..0000000000
--- a/packages/chef-server/spec/views/nodes/index.html.erb_spec.rb
+++ /dev/null
@@ -1 +0,0 @@
-require File.join(File.dirname(__FILE__), "../..", 'spec_helper.rb') \ No newline at end of file
diff --git a/packages/chef-server/spec/views/nodes/new.html.erb_spec.rb b/packages/chef-server/spec/views/nodes/new.html.erb_spec.rb
deleted file mode 100644
index 33a0c3631f..0000000000
--- a/packages/chef-server/spec/views/nodes/new.html.erb_spec.rb
+++ /dev/null
@@ -1 +0,0 @@
-require File.join(File.dirname(__FILE__), "../..", 'spec_helper.rb') \ No newline at end of file
diff --git a/packages/chef-server/spec/views/nodes/show.html.erb_spec.rb b/packages/chef-server/spec/views/nodes/show.html.erb_spec.rb
deleted file mode 100644
index 33a0c3631f..0000000000
--- a/packages/chef-server/spec/views/nodes/show.html.erb_spec.rb
+++ /dev/null
@@ -1 +0,0 @@
-require File.join(File.dirname(__FILE__), "../..", 'spec_helper.rb') \ No newline at end of file