openid_ar_store 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. data/lib/openid_ar_store/active_record_store.rb +3 -3
  2. data/lib/openid_ar_store/association.rb +0 -2
  3. data/lib/openid_ar_store/engine.rb +3 -2
  4. data/lib/openid_ar_store/nonce.rb +0 -2
  5. data/lib/openid_ar_store/version.rb +1 -1
  6. data/test/dummy/README.rdoc +15 -248
  7. data/test/dummy/Rakefile +0 -1
  8. data/test/dummy/app/assets/javascripts/application.js +3 -5
  9. data/test/dummy/app/controllers/application_controller.rb +3 -1
  10. data/test/dummy/app/views/layouts/application.html.erb +2 -2
  11. data/test/dummy/bin/bundle +3 -0
  12. data/test/dummy/bin/rails +4 -0
  13. data/test/dummy/bin/rake +4 -0
  14. data/test/dummy/config.ru +1 -1
  15. data/test/dummy/config/application.rb +0 -36
  16. data/test/dummy/config/boot.rb +4 -9
  17. data/test/dummy/config/environment.rb +2 -2
  18. data/test/dummy/config/environments/development.rb +11 -19
  19. data/test/dummy/config/environments/production.rb +40 -27
  20. data/test/dummy/config/environments/test.rb +13 -14
  21. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  22. data/test/dummy/config/initializers/inflections.rb +6 -5
  23. data/test/dummy/config/initializers/secret_token.rb +7 -2
  24. data/test/dummy/config/initializers/session_store.rb +0 -5
  25. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  26. data/test/dummy/config/locales/en.yml +20 -2
  27. data/test/dummy/config/routes.rb +1 -1
  28. data/test/dummy/db/migrate/{20131127050158_open_id_store.openid_ar_store.rb → 20131127070913_open_id_store.openid_ar_store.rb} +0 -0
  29. data/test/dummy/db/schema.rb +13 -13
  30. data/test/dummy/db/test.sqlite3 +0 -0
  31. data/test/dummy/log/development.log +10 -18
  32. data/test/dummy/log/test.log +226 -202
  33. data/test/dummy/public/404.html +43 -11
  34. data/test/dummy/public/422.html +43 -11
  35. data/test/dummy/public/500.html +43 -11
  36. metadata +17 -11
  37. data/test/dummy/script/rails +0 -6
@@ -1,10 +1,5 @@
1
- require 'rubygems'
2
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
3
 
4
- if File.exist?(gemfile)
5
- ENV['BUNDLE_GEMFILE'] = gemfile
6
- require 'bundler'
7
- Bundler.setup
8
- end
9
-
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
4
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,5 +1,5 @@
1
- # Load the rails application
1
+ # Load the Rails application.
2
2
  require File.expand_path('../application', __FILE__)
3
3
 
4
- # Initialize the rails application
4
+ # Initialize the Rails application.
5
5
  Dummy::Application.initialize!
@@ -1,37 +1,29 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # In the development environment your application's code is reloaded on
5
5
  # every request. This slows down response time but is perfect for development
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
11
 
12
- # Show full error reports and disable caching
12
+ # Show full error reports and disable caching.
13
13
  config.consider_all_requests_local = true
14
14
  config.action_controller.perform_caching = false
15
15
 
16
- # Don't care if the mailer can't send
16
+ # Don't care if the mailer can't send.
17
17
  config.action_mailer.raise_delivery_errors = false
18
18
 
19
- # Print deprecation notices to the Rails logger
19
+ # Print deprecation notices to the Rails logger.
20
20
  config.active_support.deprecation = :log
21
21
 
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
24
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
- # Log the query plan for queries taking more than this (works
29
- # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
31
-
32
- # Do not compress assets
33
- config.assets.compress = false
34
-
35
- # Expands the lines which load the assets
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
36
28
  config.assets.debug = true
37
29
  end
@@ -1,67 +1,80 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
- # Code is not reloaded between requests
4
+ # Code is not reloaded between requests.
5
5
  config.cache_classes = true
6
6
 
7
- # Full error reports are disabled and caching is turned on
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
8
14
  config.consider_all_requests_local = false
9
15
  config.action_controller.perform_caching = true
10
16
 
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
12
23
  config.serve_static_assets = false
13
24
 
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
16
28
 
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
18
30
  config.assets.compile = false
19
31
 
20
- # Generate digests for assets URLs
32
+ # Generate digests for assets URLs.
21
33
  config.assets.digest = true
22
34
 
23
- # Defaults to nil and saved in location specified by config.assets.prefix
24
- # config.assets.manifest = YOUR_PATH
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
25
37
 
26
- # Specifies the header that your server uses for sending files
38
+ # Specifies the header that your server uses for sending files.
27
39
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
40
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
41
 
30
42
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
43
  # config.force_ssl = true
32
44
 
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
35
47
 
36
- # Prepend all log lines with the following tags
48
+ # Prepend all log lines with the following tags.
37
49
  # config.log_tags = [ :subdomain, :uuid ]
38
50
 
39
- # Use a different logger for distributed setups
51
+ # Use a different logger for distributed setups.
40
52
  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
53
 
42
- # Use a different cache store in production
54
+ # Use a different cache store in production.
43
55
  # config.cache_store = :mem_cache_store
44
56
 
45
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
46
58
  # config.action_controller.asset_host = "http://assets.example.com"
47
59
 
48
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
49
62
  # config.assets.precompile += %w( search.js )
50
63
 
51
- # Disable delivery errors, bad email addresses will be ignored
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
52
66
  # config.action_mailer.raise_delivery_errors = false
53
67
 
54
- # Enable threaded mode
55
- # config.threadsafe!
56
-
57
68
  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
- # the I18n.default_locale when a translation can not be found)
69
+ # the I18n.default_locale when a translation can not be found).
59
70
  config.i18n.fallbacks = true
60
71
 
61
- # Send deprecation notices to registered listeners
72
+ # Send deprecation notices to registered listeners.
62
73
  config.active_support.deprecation = :notify
63
74
 
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
67
80
  end
@@ -1,5 +1,5 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # The test environment is used exclusively to run your application's
5
5
  # test suite. You never need to work with it otherwise. Remember that
@@ -7,31 +7,30 @@ Dummy::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
- # Configure static asset server for tests with Cache-Control for performance
11
- config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
13
14
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
16
18
 
17
- # Show full error reports and disable caching
19
+ # Show full error reports and disable caching.
18
20
  config.consider_all_requests_local = true
19
21
  config.action_controller.perform_caching = false
20
22
 
21
- # Raise exceptions instead of rendering exception templates
23
+ # Raise exceptions instead of rendering exception templates.
22
24
  config.action_dispatch.show_exceptions = false
23
25
 
24
- # Disable request forgery protection in test environment
25
- config.action_controller.allow_forgery_protection = false
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
26
28
 
27
29
  # Tell Action Mailer not to deliver emails to the real world.
28
30
  # The :test delivery method accumulates sent emails in the
29
31
  # ActionMailer::Base.deliveries array.
30
32
  config.action_mailer.delivery_method = :test
31
33
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
- # Print deprecation notices to the stderr
34
+ # Print deprecation notices to the stderr.
36
35
  config.active_support.deprecation = :stderr
37
36
  end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -1,15 +1,16 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
6
7
  # inflect.plural /^(ox)$/i, '\1en'
7
8
  # inflect.singular /^(ox)en/i, '\1'
8
9
  # inflect.irregular 'person', 'people'
9
10
  # inflect.uncountable %w( fish sheep )
10
11
  # end
11
- #
12
+
12
13
  # These inflection rules are supported but not enabled by default:
13
- # ActiveSupport::Inflector.inflections do |inflect|
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
14
15
  # inflect.acronym 'RESTful'
15
16
  # end
@@ -1,7 +1,12 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Your secret key for verifying the integrity of signed cookies.
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
4
  # If you change this key, all old signed cookies will become invalid!
5
+
5
6
  # Make sure the secret is at least 30 characters and all random,
6
7
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = 'fef29d1dd6a8d47613de619f8fe29e95bee34a19ad466ae2a3d2052781fee65c1bbe966b75bfeb68585242da13235953fccdf4447595d158495a103dda148b52'
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '8d09eb884bb0038b60da7ff920fe8855c6503c472d044668934c2c7a4a86884421ff085fd47733611725e0ea5611dfbd436752884209590647a0367d81bad3a6'
@@ -1,8 +1,3 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
3
  Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
-
5
- # Use the database for sessions instead of the cookie-based default,
6
- # which shouldn't be used to store highly confidential information
7
- # (create the session table with "rails generate session_migration")
8
- # Dummy::Application.config.session_store :active_record_store
@@ -1,14 +1,14 @@
1
1
  # Be sure to restart your server when you modify this file.
2
- #
2
+
3
3
  # This file contains settings for ActionController::ParamsWrapper which
4
4
  # is enabled by default.
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json]
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
9
  end
10
10
 
11
- # Disable root element in JSON by default.
12
- ActiveSupport.on_load(:active_record) do
13
- self.include_root_in_json = false
14
- end
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -1,5 +1,23 @@
1
- # Sample localization file for English. Add more files in this directory for other locales.
2
- # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
3
21
 
4
22
  en:
5
23
  hello: "Hello world"
@@ -1,4 +1,4 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
- mount OpenidArStore::Engine => "/openid_ar_store"
3
+ mount OpenIDArStore::Engine => "/openid_ar_store"
4
4
  end
@@ -9,23 +9,23 @@
9
9
  # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
10
  # you'll amass, the slower it'll run and the greater likelihood for issues).
11
11
  #
12
- # It's strongly recommended to check this file into your version control system.
12
+ # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20131127050158) do
14
+ ActiveRecord::Schema.define(version: 20131127070913) do
15
15
 
16
- create_table "open_id_associations", :force => true do |t|
17
- t.string "server_url", :null => false
18
- t.string "handle", :null => false
19
- t.binary "secret", :null => false
20
- t.integer "issued", :null => false
21
- t.integer "lifetime", :null => false
22
- t.string "assoc_type", :null => false
16
+ create_table "open_id_associations", force: true do |t|
17
+ t.string "server_url", null: false
18
+ t.string "handle", null: false
19
+ t.binary "secret", null: false
20
+ t.integer "issued", null: false
21
+ t.integer "lifetime", null: false
22
+ t.string "assoc_type", null: false
23
23
  end
24
24
 
25
- create_table "open_id_nonces", :force => true do |t|
26
- t.string "server_url", :null => false
27
- t.integer "timestamp", :null => false
28
- t.string "salt", :null => false
25
+ create_table "open_id_nonces", force: true do |t|
26
+ t.string "server_url", null: false
27
+ t.integer "timestamp", null: false
28
+ t.string "salt", null: false
29
29
  end
30
30
 
31
31
  end
Binary file
@@ -1,18 +1,10 @@
1
- Connecting to database specified by database.yml
2
-  (0.1ms) select sqlite_version(*)
3
-  (99.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
-  (100.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (3.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
- Migrating to OpenIdStore (20131127050158)
7
-  (0.1ms) begin transaction
8
-  (0.3ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL)
9
-  (0.1ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL) 
10
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131127050158')
11
-  (112.0ms) commit transaction
12
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
13
- Connecting to database specified by database.yml
14
-  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
- Migrating to OpenIdStore (20131127050158)
16
-  (0.1ms) select sqlite_version(*)
17
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
- Connecting to database specified by database.yml
1
+  (109.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (111.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to OpenIdStore (20131127070913)
5
+  (0.2ms) begin transaction
6
+  (0.9ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL) 
7
+  (0.5ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL)
8
+ SQL (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131127070913"]]
9
+  (134.9ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -1,263 +1,287 @@
1
- Connecting to database specified by database.yml
2
1
   (0.3ms) begin transaction
3
-  (0.0ms) rollback transaction
4
-  (0.0ms) begin transaction
5
-  (0.0ms) rollback transaction
6
- Connecting to database specified by database.yml
2
+ -----------------------------
3
+ OpenidArStoreTest: test_nonce
4
+ -----------------------------
5
+  (0.2ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ -----------------------------
8
+ OpenidArStoreTest: test_store
9
+ -----------------------------
10
+  (0.1ms) rollback transaction
7
11
   (0.3ms) begin transaction
12
+ -----------------------------
13
+ OpenidArStoreTest: test_nonce
14
+ -----------------------------
8
15
   (0.1ms) rollback transaction
9
-  (0.0ms) begin transaction
10
-  (0.0ms) rollback transaction
11
- Connecting to database specified by database.yml
12
-  (0.1ms) select sqlite_version(*)
13
-  (105.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
-  (100.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
-  (2.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
- Migrating to OpenIdStore (20131127050158)
17
16
   (0.1ms) begin transaction
18
-  (0.8ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL)
19
-  (0.4ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL) 
20
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131127050158')
21
-  (133.2ms) commit transaction
22
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
23
- Connecting to database specified by database.yml
24
-  (0.4ms) begin transaction
25
- OpenIDArStore::Nonce Load (1.2ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528915 AND "open_id_nonces"."salt" = 'g6JNKH' LIMIT 1
26
-  (0.1ms) rollback transaction
27
-  (0.0ms) begin transaction
28
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
29
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = ';)]*lkzy}%j9GaB}/I9|dzK=w=<\8[Kp70W+d{H''h&S8a[Wv<<`[5&6%.l*Tr,67<)L+"J_k/DcOgKf`G]X[nHHE"%P*xB?''~A:IwH}ke''x=wWu*1&>j,l0}8ZgpH\8v')
30
-  (0.0ms) rollback transaction
31
- Connecting to database specified by database.yml
17
+ -----------------------------
18
+ OpenidArStoreTest: test_store
19
+ -----------------------------
20
+  (0.1ms) rollback transaction
21
+  (102.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
22
+  (100.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+ Migrating to OpenIdStore (20131127070913)
25
+  (0.1ms) begin transaction
26
+  (0.8ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL) 
27
+  (0.4ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL)
28
+ SQL (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131127070913"]]
29
+  (148.6ms) commit transaction
30
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
31
   (0.4ms) begin transaction
33
- OpenIDArStore::Nonce Load (1.3ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
32
+ -----------------------------
33
+ OpenidArStoreTest: test_nonce
34
+ -----------------------------
35
+ OpenIDArStore::Nonce Load (0.2ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'wwFFba' LIMIT 1
34
36
   (0.1ms) SAVEPOINT active_record_1
35
- SQL (3.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "bm2bnl"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385528957]]
36
-  (0.0ms) RELEASE SAVEPOINT active_record_1
37
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
38
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
39
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'xSUQE5' LIMIT 1
40
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
41
-  (0.0ms) SAVEPOINT active_record_1
42
- SQL (0.2ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "oi6ONv"], ["server_url", ""], ["timestamp", 1385528957]]
43
-  (0.0ms) RELEASE SAVEPOINT active_record_1
44
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
45
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
46
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'bRht2O' LIMIT 1
47
- SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385528957 OR timestamp < 1385528957)
48
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385508957 AND "open_id_nonces"."salt" = 'nScmuJ' LIMIT 1
37
+ SQL (3.7ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "wwFFba"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385536221]]
38
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'wwFFba' LIMIT 1
40
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'wwFFba' LIMIT 1
41
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'hjMf8h' LIMIT 1
42
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'IvT9si' LIMIT 1
43
+  (0.1ms) SAVEPOINT active_record_1
44
+ SQL (0.2ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "IvT9si"], ["server_url", ""], ["timestamp", 1385536221]]
45
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'IvT9si' LIMIT 1
47
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536221 AND "open_id_nonces"."salt" = 'IvT9si' LIMIT 1
48
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'U6G0eF' LIMIT 1
49
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385536221 OR timestamp < 1385536221)
50
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385516221 AND "open_id_nonces"."salt" = 'PYUP6K' LIMIT 1
49
51
   (0.0ms) SAVEPOINT active_record_1
50
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "nScmuJ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385508957]]
52
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "PYUP6K"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385516221]]
51
53
   (0.0ms) RELEASE SAVEPOINT active_record_1
52
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385518957 AND "open_id_nonces"."salt" = 'uBZhNV' LIMIT 1
54
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385526221 AND "open_id_nonces"."salt" = 'UrRBRK' LIMIT 1
53
55
   (0.0ms) SAVEPOINT active_record_1
54
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "uBZhNV"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385518957]]
56
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "UrRBRK"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385526221]]
55
57
   (0.0ms) RELEASE SAVEPOINT active_record_1
56
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528357 AND "open_id_nonces"."salt" = '01c74y' LIMIT 1
58
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385535621 AND "open_id_nonces"."salt" = 'DxNV6s' LIMIT 1
57
59
   (0.0ms) SAVEPOINT active_record_1
58
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "01c74y"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385528357]]
60
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "DxNV6s"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385535621]]
59
61
   (0.0ms) RELEASE SAVEPOINT active_record_1
60
- SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385529957 OR timestamp < 1385527957)
61
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385508957 AND "open_id_nonces"."salt" = 'nScmuJ' LIMIT 1
62
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385537221 OR timestamp < 1385535221)
63
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385516221 AND "open_id_nonces"."salt" = 'PYUP6K' LIMIT 1
62
64
   (0.0ms) SAVEPOINT active_record_1
63
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "nScmuJ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385508957]]
65
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "PYUP6K"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385516221]]
64
66
   (0.0ms) RELEASE SAVEPOINT active_record_1
65
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385518957 AND "open_id_nonces"."salt" = 'uBZhNV' LIMIT 1
67
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385526221 AND "open_id_nonces"."salt" = 'UrRBRK' LIMIT 1
66
68
   (0.0ms) SAVEPOINT active_record_1
67
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "uBZhNV"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385518957]]
69
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "UrRBRK"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385526221]]
68
70
   (0.0ms) RELEASE SAVEPOINT active_record_1
69
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528357 AND "open_id_nonces"."salt" = '01c74y' LIMIT 1
70
-  (0.1ms) rollback transaction
71
-  (0.0ms) begin transaction
72
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
73
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
71
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385535621 AND "open_id_nonces"."salt" = 'DxNV6s' LIMIT 1
72
+  (0.2ms) rollback transaction
73
+  (0.1ms) begin transaction
74
+ -----------------------------
75
+ OpenidArStoreTest: test_store
76
+ -----------------------------
77
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
78
+ SQL (0.2ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
74
79
   (0.1ms) SAVEPOINT active_record_1
75
- SQL (0.3ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
76
-  (0.0ms) RELEASE SAVEPOINT active_record_1
80
+ SQL (0.3ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "3QgX'!]f~kZ\\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\\txx.;'rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@\">wxP$BB3_J7wS<W\"+pYB')Fbz>DN^)PnKI6sWzQd"], ["issued", 1385536221], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
81
+  (0.1ms) RELEASE SAVEPOINT active_record_1
77
82
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
78
83
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
79
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
80
-  (0.0ms) SAVEPOINT active_record_1
81
- SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
84
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
85
+  (0.1ms) SAVEPOINT active_record_1
86
+ SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "3QgX'!]f~kZ\\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\\txx.;'rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@\">wxP$BB3_J7wS<W\"+pYB')Fbz>DN^)PnKI6sWzQd"], ["issued", 1385536221], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
82
87
   (0.0ms) RELEASE SAVEPOINT active_record_1
83
88
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
84
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"Kx')
85
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openidx' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
86
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
87
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
88
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
89
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQdx')
90
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openidx' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
91
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
92
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
93
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
89
94
   (0.0ms) SAVEPOINT active_record_1
90
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
91
-  (0.0ms) RELEASE SAVEPOINT active_record_1
92
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
95
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "3QgX'!]f~kZ\\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\\txx.;'rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@\">wxP$BB3_J7wS<W\"+pYB')Fbz>DN^)PnKI6sWzQd"], ["issued", 1385536221], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
96
+  (0.1ms) RELEASE SAVEPOINT active_record_1
97
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn''')
93
98
   (0.0ms) SAVEPOINT active_record_1
94
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "*]{aEHG.&DdJ)L#rdx,|?A\\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\\Dwbov^K<'`wZLe)i4h&hEq<RQ_<k`l"], ["issued", 1385528958], ["lifetime", 600], ["secret", "\xEF\xFD\xC8\x1A\xB4\xDCQ\xF0\x19\x04~\xAA\xDD\xBC\x80r'@\xB4\xE8"], ["server_url", "http://www.myopenid.com/openid"]]
99
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "LQ@O$(pnvhu}.24<]\"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&\"SIn;$Fq]BdN[JKi<B/=;xYuZ6'k5[n/%)+v]3?hHZLg,}4X'%ebn'"], ["issued", 1385536222], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
95
100
   (0.0ms) RELEASE SAVEPOINT active_record_1
96
101
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
97
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
98
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
99
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
100
-  (0.0ms) SAVEPOINT active_record_1
101
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "N,XqPcie_r#_baT$>g}+br'HH=h@PiVc2WZd8\\@AueK!CwoT]t+Cg-?\\fKkd*'aqn?4<o{{p\\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U'<BB0Mvs"], ["issued", 1385528959], ["lifetime", 100], ["secret", "\x16{\xDC\xEE\xB2\x01\xB4\xF3\xA5}h\x01\xDE\xF2\"4\xC8>\e\xE4"], ["server_url", "http://www.myopenid.com/openid"]]
102
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd'
103
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn'''
104
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z')
105
+  (0.1ms) SAVEPOINT active_record_1
106
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "Nf_Es&)CBA02Pv'%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O'+y1z"], ["issued", 1385536223], ["lifetime", 100], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
102
107
   (0.0ms) RELEASE SAVEPOINT active_record_1
103
108
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
104
- OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
105
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
106
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
107
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
109
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd'
110
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn'''
111
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z'
112
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn''')
108
113
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
109
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
110
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
111
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
112
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
113
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
114
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd'
115
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn'''
116
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z'
117
+ SQL (0.2ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn''')
118
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z')
114
119
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
115
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
116
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
117
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
118
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
119
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
120
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
120
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd'
121
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn'''
122
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z'
123
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn''')
124
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
125
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z')
121
126
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
122
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
123
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
124
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
125
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
126
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
127
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
128
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385528958)
129
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'FUX4\_VZ?X,%}1oUDnG#+]LR11bzv]W&X6%kuM#7o}a|-`C|]&3c33.#&\,5GnP25/"/1''u>Zk2<Q15pUb-ZHDE4(9WCosh>j0&\9-<SO#y=UR2`Oo"Iht@`c&__0_5I')
130
-  (0.0ms) SAVEPOINT active_record_1
131
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "FUX4\\_VZ?X,%}1oUDnG#+]LR11bzv]W&X6%kuM#7o}a|-`C|]&3c33.#&\\,5GnP25/\"/1'u>Zk2<Q15pUb-ZHDE4(9WCosh>j0&\\9-<SO#y=UR2`Oo\"Iht@`c&__0_5I"], ["issued", 1385525358], ["lifetime", 7200], ["secret", "\x1F47\x1D\x12G\xBF\xAAJ\xCDRa\xDE\xE4X\xF2,\xD0\xF6\xF2"], ["server_url", "http://www.myopenid.com/openid1"]]
127
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd'
128
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn'''
129
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z'
130
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'LQ@O$(pnvhu}.24<]"k7@::N7*4c4<7O;|us-@Ma}#J8W6madu1JPw$mzub,puK~DAv})WN^&&"SIn;$Fq]BdN[JKi<B/=;xYuZ6''k5[n/%)+v]3?hHZLg,}4X''%ebn''')
131
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '3QgX''!]f~kZ\LyucRf:,bfTxG/ZV6pzZW$G511e`iBSc\txx.;''rR++ol@.wACs|ohiaiv+i|N@5DB-TOBrQfs@">wxP$BB3_J7wS<W"+pYB'')Fbz>DN^)PnKI6sWzQd')
132
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'Nf_Es&)CBA02Pv''%=SQFDNg1drB)I,Pv;zXH&L5rJfgF|V*SWxjevwIK,\K|/xIZV{ls(y]uMNN:OS2InU#bngVFi/-q(oYSTv+E1j)D6A5V)!|7,z`t,&`(p^O''+y1z')
133
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385536221)
134
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'Q1DJXQIC5Z?/Nd-hg2"T;A=Fsa:y{AoX~j}|Pj),hSXfdZ(IYYFqJ3>_|q(9^X3(~m?)\4WL.O7f)6]e$tv7d{_Q5a)l0?$(Xlb#x"YQKr)E9S`i>>Nw1g#~Jl<\K>g4')
135
+  (0.1ms) SAVEPOINT active_record_1
136
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "Q1DJXQIC5Z?/Nd-hg2\"T;A=Fsa:y{AoX~j}|Pj),hSXfdZ(IYYFqJ3>_|q(9^X3(~m?)\\4WL.O7f)6]e$tv7d{_Q5a)l0?$(Xlb#x\"YQKr)E9S`i>>Nw1g#~Jl<\\K>g4"], ["issued", 1385532621], ["lifetime", 7200], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid1"]]
132
137
   (0.0ms) RELEASE SAVEPOINT active_record_1
133
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'E7b%*?|U;N;_Exq9?uZRz0ZU&J2H/<fCtb9C_h(.IC\r=VgWz~[/jjduo8b%`O:yZR(K4{3sw]J-+~c''/^GkiHGhp}1dqD[v=M!$7H5licv0niOTO=MA=+CVMU)tLs?I')
138
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = '{w_5$eL!tH2$''xej~6+Ub2.Oh.{ze-3)[`}6IF8X8f"&0R_/|OHnLV5jWqpUW+W^VgROZTBY2fx#1I-]L[i''$bjf$y^J%>e/3QJ|pw2oS9h*%X5qX*=P$)A8,3/tB%Iz')
134
139
   (0.0ms) SAVEPOINT active_record_1
135
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "E7b%*?|U;N;_Exq9?uZRz0ZU&J2H/<fCtb9C_h(.IC\\r=VgWz~[/jjduo8b%`O:yZR(K4{3sw]J-+~c'/^GkiHGhp}1dqD[v=M!$7H5licv0niOTO=MA=+CVMU)tLs?I"], ["issued", 1385521758], ["lifetime", 3600], ["secret", ";\xC5;\x86\f?#\xF0x,\xCF\xAA)\xD4\xFCR\x13\n\x8A\xEB"], ["server_url", "http://www.myopenid.com/openid1"]]
140
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "{w_5$eL!tH2$'xej~6+Ub2.Oh.{ze-3)[`}6IF8X8f\"&0R_/|OHnLV5jWqpUW+W^VgROZTBY2fx#1I-]L[i'$bjf$y^J%>e/3QJ|pw2oS9h*%X5qX*=P$)A8,3/tB%Iz"], ["issued", 1385529021], ["lifetime", 3600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid1"]]
136
141
   (0.0ms) RELEASE SAVEPOINT active_record_1
137
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid2' AND handle = '0B=YHFLnZ~U{`''UThQb&hEUL2YlzdI4C|cV*J~Y=Dmi/7M~+9HNI@rYNp<u9sV>Qa,DP5U!BJw=~^bj=QLjW6!Z=rAF~[7+cmgNIpHVfBwB+w?''Mv}kp#_nzM^S:F%5|')
142
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid2' AND handle = 'J.Ly}.pb{vu,H3&ZQo1CQ&`AS!2?<Ncqdu5=H/Ofg.W!YdwSjP^8AfhH%|jzJ&A[I{8*FdW$#,<At^JXS"lPVG%7bp^cu#xm`S\fzkMSRU<qbfKzW)7.@q-1Mh6aVkf)')
138
143
   (0.0ms) SAVEPOINT active_record_1
139
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "0B=YHFLnZ~U{`'UThQb&hEUL2YlzdI4C|cV*J~Y=Dmi/7M~+9HNI@rYNp<u9sV>Qa,DP5U!BJw=~^bj=QLjW6!Z=rAF~[7+cmgNIpHVfBwB+w?'Mv}kp#_nzM^S:F%5|"], ["issued", 1385521758], ["lifetime", 3600], ["secret", "\x90\x8909Q\x0F\xDFnp\x10\x97Y\xB8\x9C\xAEv\x9C\x04\xD3D"], ["server_url", "http://www.myopenid.com/openid2"]]
144
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "J.Ly}.pb{vu,H3&ZQo1CQ&`AS!2?<Ncqdu5=H/Ofg.W!YdwSjP^8AfhH%|jzJ&A[I{8*FdW$#,<At^JXS\"lPVG%7bp^cu#xm`S\\fzkMSRU<qbfKzW)7.@q-1Mh6aVkf)"], ["issued", 1385529021], ["lifetime", 3600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid2"]]
140
145
   (0.0ms) RELEASE SAVEPOINT active_record_1
141
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid3' AND handle = 'hB]D71UPi''"4ivJAnr8''zvgsUqJ3sxRLqSoG&}\|y3H6\$)AmBx1W6!;PE8F1/M}>~b6:''Z+T4|W69YU0Xb8Md?6G|ol5Q+MM(6f!7FQ/ATZjyKB/b.oBE^W6VC0bm(%')
142
-  (0.0ms) SAVEPOINT active_record_1
143
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "hB]D71UPi'\"4ivJAnr8'zvgsUqJ3sxRLqSoG&}\\|y3H6\\$)AmBx1W6!;PE8F1/M}>~b6:'Z+T4|W69YU0Xb8Md?6G|ol5Q+MM(6f!7FQ/ATZjyKB/b.oBE^W6VC0bm(%"], ["issued", 1385528953], ["lifetime", 600], ["secret", "\x1A\xB5\a\xE7\xE6^la\xB9\xE9\x80\xB3c:\xD4\xEE]\x8Br!"], ["server_url", "http://www.myopenid.com/openid3"]]
146
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid3' AND handle = 'T//CX5o$zoS5$[e"=3G)ICu`$V<`G?Q!i<+;G[`AjHp2yQH''B\%O#2gZRo&XO8o^Lz&PL;&FNgMdD9UTj)>Y.9u?RaGJRFqSLloFG#k7`Ih_G\aGfal0%96vIYgdfh3V')
147
+  (0.1ms) SAVEPOINT active_record_1
148
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "T//CX5o$zoS5$[e\"=3G)ICu`$V<`G?Q!i<+;G[`AjHp2yQH'B\\%O#2gZRo&XO8o^Lz&PL;&FNgMdD9UTj)>Y.9u?RaGJRFqSLloFG#k7`Ih_G\\aGfal0%96vIYgdfh3V"], ["issued", 1385536216], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid3"]]
144
149
   (0.0ms) RELEASE SAVEPOINT active_record_1
145
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385528958)
150
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385536221)
146
151
   (0.1ms) rollback transaction
147
- Connecting to database specified by database.yml
148
- Connecting to database specified by database.yml
149
152
   (0.4ms) begin transaction
150
- OpenIDArStore::Nonce Load (1.2ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = '2NL25Q' LIMIT 1
153
+ -----------------------------
154
+ OpenidArStoreTest: test_nonce
155
+ -----------------------------
156
+ OpenIDArStore::Nonce Load (0.2ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'yn3HJC' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
151
157
   (0.1ms) SAVEPOINT active_record_1
152
- SQL (21.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "2NL25Q"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385534894]]
158
+ SQL (3.8ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "yn3HJC"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385536461]]
153
159
   (0.1ms) RELEASE SAVEPOINT active_record_1
154
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = '2NL25Q' LIMIT 1
155
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = '2NL25Q' LIMIT 1
156
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'UQqH9t' LIMIT 1
157
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = 'lHY9TQ' LIMIT 1
158
-  (0.0ms) SAVEPOINT active_record_1
159
- SQL (0.2ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "lHY9TQ"], ["server_url", ""], ["timestamp", 1385534894]]
160
-  (0.0ms) RELEASE SAVEPOINT active_record_1
161
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = 'lHY9TQ' LIMIT 1
162
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385534894 AND "open_id_nonces"."salt" = 'lHY9TQ' LIMIT 1
163
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'Ae5qTL' LIMIT 1
164
- SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385534894 OR timestamp < 1385534894)
165
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385514894 AND "open_id_nonces"."salt" = 'z0XOBj' LIMIT 1
160
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'yn3HJC' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
161
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'yn3HJC' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
162
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'y5eTPX' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
163
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'I7yMPT' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
164
+  (0.1ms) SAVEPOINT active_record_1
165
+ SQL (0.2ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "I7yMPT"], ["server_url", ""], ["timestamp", 1385536461]]
166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
167
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'I7yMPT' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
168
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385536461 AND "open_id_nonces"."salt" = 'I7yMPT' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
169
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'W4eTga' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
170
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385536461 OR timestamp < 1385536461)
171
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385516461 AND "open_id_nonces"."salt" = 'RmXDS3' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
166
172
   (0.0ms) SAVEPOINT active_record_1
167
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "z0XOBj"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385514894]]
173
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "RmXDS3"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385516461]]
168
174
   (0.0ms) RELEASE SAVEPOINT active_record_1
169
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385524894 AND "open_id_nonces"."salt" = 'AWHLO1' LIMIT 1
175
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385526461 AND "open_id_nonces"."salt" = 'xZZ4nZ' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
170
176
   (0.0ms) SAVEPOINT active_record_1
171
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "AWHLO1"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385524894]]
177
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "xZZ4nZ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385526461]]
172
178
   (0.0ms) RELEASE SAVEPOINT active_record_1
173
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385534294 AND "open_id_nonces"."salt" = 's6I1Wd' LIMIT 1
179
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385535861 AND "open_id_nonces"."salt" = 'TdOOtC' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
174
180
   (0.0ms) SAVEPOINT active_record_1
175
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "s6I1Wd"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385534294]]
181
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "TdOOtC"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385535861]]
176
182
   (0.0ms) RELEASE SAVEPOINT active_record_1
177
- SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385535894 OR timestamp < 1385533894)
178
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385514894 AND "open_id_nonces"."salt" = 'z0XOBj' LIMIT 1
183
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385537461 OR timestamp < 1385535461)
184
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385516461 AND "open_id_nonces"."salt" = 'RmXDS3' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
179
185
   (0.0ms) SAVEPOINT active_record_1
180
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "z0XOBj"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385514894]]
186
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "RmXDS3"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385516461]]
181
187
   (0.0ms) RELEASE SAVEPOINT active_record_1
182
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385524894 AND "open_id_nonces"."salt" = 'AWHLO1' LIMIT 1
188
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385526461 AND "open_id_nonces"."salt" = 'xZZ4nZ' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
183
189
   (0.0ms) SAVEPOINT active_record_1
184
- SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "AWHLO1"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385524894]]
190
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "xZZ4nZ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385526461]]
185
191
   (0.0ms) RELEASE SAVEPOINT active_record_1
186
- OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385534294 AND "open_id_nonces"."salt" = 's6I1Wd' LIMIT 1
187
-  (0.1ms) rollback transaction
188
-  (0.0ms) begin transaction
192
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385535861 AND "open_id_nonces"."salt" = 'TdOOtC' ORDER BY "open_id_nonces"."id" ASC LIMIT 1
193
+  (0.2ms) rollback transaction
194
+  (0.1ms) begin transaction
195
+ -----------------------------
196
+ OpenidArStoreTest: test_store
197
+ -----------------------------
198
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
199
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
200
+  (0.1ms) SAVEPOINT active_record_1
201
+ SQL (0.3ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM\"+|!w5-O$hfS5!81v@3QQumbJ.asrl']Oc"], ["issued", 1385536461], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
203
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
189
204
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
190
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
205
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
206
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
207
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
191
208
   (0.1ms) SAVEPOINT active_record_1
192
- SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "7F};n)^DB}m\"I}(3Zho|`6Qr'Y&,/Ko1^%g1]x'l\\s1Y+oh)A1N%/}YL:`\\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\\]|z:K+W4:8J5\\nWfs\"<yy=zY5?.,PR"], ["issued", 1385534894], ["lifetime", 600], ["secret", "\xA86\x9E\xA8\xF2\xA6\xDC\x94=\xA5\x1EwW`\xC4\v\x12\xAFH\x05"], ["server_url", "http://www.myopenid.com/openid"]]
209
+ SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM\"+|!w5-O$hfS5!81v@3QQumbJ.asrl']Oc"], ["issued", 1385536461], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
193
210
   (0.0ms) RELEASE SAVEPOINT active_record_1
194
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
211
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
195
212
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
196
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
213
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Ocx')
214
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openidx' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
215
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
216
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
217
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
218
+  (0.0ms) SAVEPOINT active_record_1
219
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM\"+|!w5-O$hfS5!81v@3QQumbJ.asrl']Oc"], ["issued", 1385536461], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
221
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY')
197
222
   (0.0ms) SAVEPOINT active_record_1
198
- SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "7F};n)^DB}m\"I}(3Zho|`6Qr'Y&,/Ko1^%g1]x'l\\s1Y+oh)A1N%/}YL:`\\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\\]|z:K+W4:8J5\\nWfs\"<yy=zY5?.,PR"], ["issued", 1385534894], ["lifetime", 600], ["secret", "\xA86\x9E\xA8\xF2\xA6\xDC\x94=\xA5\x1EwW`\xC4\v\x12\xAFH\x05"], ["server_url", "http://www.myopenid.com/openid"]]
223
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "K!wtreb94=.1?!/O@4cHfJL'\"luk1_cUj$Kj1#\\VDdh-AV4RnL,DfVv7BM~35K)A+'{7*dy<T#~]=-SQP'Y\"@H]`pJ[i,4\"*hEv%V6'Ku|OrI>Q8)d'@f'-e@'gBdFGY"], ["issued", 1385536462], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
225
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
226
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
227
+  (0.2ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
228
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
229
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
230
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
231
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb')
232
+  (0.1ms) SAVEPOINT active_record_1
233
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "GG1AP^\\}Q^K~,V^lv&+t{*uq\"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\\=\"FAv<.E0AV[z\#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb"], ["issued", 1385536463], ["lifetime", 100], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid"]]
199
234
   (0.0ms) RELEASE SAVEPOINT active_record_1
235
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
236
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
237
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
238
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
239
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
240
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
241
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
242
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
243
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY')
244
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
200
245
  OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
201
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PRx')
202
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openidx' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
203
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
204
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
205
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
246
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
247
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
248
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
249
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
250
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
251
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY')
252
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb')
253
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
254
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
255
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
256
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
257
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
258
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
259
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY')
260
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
261
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb')
262
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
263
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc'
264
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY'
265
+  (0.1ms) SELECT COUNT(*) FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb'
266
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'K!wtreb94=.1?!/O@4cHfJL''"luk1_cUj$Kj1#\VDdh-AV4RnL,DfVv7BM~35K)A+''{7*dy<T#~]=-SQP''Y"@H]`pJ[i,4"*hEv%V6''Ku|OrI>Q8)d''@f''-e@''gBdFGY')
267
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '#BaVqV:AGEd+w~$poPY0&Q8#WmK6(Q+#qEy*:;,&rDsSN.ZS4hX9mUE}?)?z%MX`M4Ho{y{vgM0zo.j7N1;%@Zz~;ZR1EM"+|!w5-O$hfS5!81v@3QQumbJ.asrl'']Oc')
268
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'GG1AP^\}Q^K~,V^lv&+t{*uq"?Fr0>6WEt$rAqX:JDUD:8>^+/[/t5TCNhn}1<IX\="FAv<.E0AV[z#@1t?!8Tu&0R}1>O]2|9.3[{1Oe-of[o%]QX[ER7gAJdTcsIvb')
269
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385536461)
270
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'w,''8VnJYh@<.*(nchhqDhaG/.]kz6O6:''h+;`zV-G[Oh.=lVD9[c6xnbEY/"ES6,0To##z3Z>/G28eR6|=EBat$K>_TM-uVnhk~dB''PM_q?kI2tH!''Px7$bI[~(p8aaz')
271
+  (0.1ms) SAVEPOINT active_record_1
272
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "w,'8VnJYh@<.*(nchhqDhaG/.]kz6O6:'h+;`zV-G[Oh.=lVD9[c6xnbEY/\"ES6,0To##z3Z>/G28eR6|=EBat$K>_TM-uVnhk~dB'PM_q?kI2tH!'Px7$bI[~(p8aaz"], ["issued", 1385532861], ["lifetime", 7200], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid1"]]
273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
274
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = '/v_rX/+]56|[X~yko"a]!UVi%uW7?yr[''3yD4(oQS\r;nO@cp`''FWi`-*!M~WBX>KQ)O{S0^m:&*dW;?]uFZ''RHmcl)GkL\XUi03BEC}]uaev:''C]Ay>uB!g''4bB`<z2')
275
+  (0.1ms) SAVEPOINT active_record_1
276
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "/v_rX/+]56|[X~yko\"a]!UVi%uW7?yr['3yD4(oQS\\r;nO@cp`'FWi`-*!M~WBX>KQ)O{S0^m:&*dW;?]uFZ'RHmcl)GkL\\XUi03BEC}]uaev:'C]Ay>uB!g'4bB`<z2"], ["issued", 1385529261], ["lifetime", 3600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid1"]]
277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
278
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid2' AND handle = 'i_A)s}S&ld''&.e>A1A!q&;{-z^Nt808j7''Z>(9''@K3o4>__xvc_NK}l+fpQ6,z+NnV0%NO&D`V|yS8\)&(k74Y)95,zv0LA)Ke%K&F(Fcj''m>R@Hegda$2Xa[bx+(0`I')
206
279
   (0.0ms) SAVEPOINT active_record_1
207
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "7F};n)^DB}m\"I}(3Zho|`6Qr'Y&,/Ko1^%g1]x'l\\s1Y+oh)A1N%/}YL:`\\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\\]|z:K+W4:8J5\\nWfs\"<yy=zY5?.,PR"], ["issued", 1385534894], ["lifetime", 600], ["secret", "\xA86\x9E\xA8\xF2\xA6\xDC\x94=\xA5\x1EwW`\xC4\v\x12\xAFH\x05"], ["server_url", "http://www.myopenid.com/openid"]]
280
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "i_A)s}S&ld'&.e>A1A!q&;{-z^Nt808j7'Z>(9'@K3o4>__xvc_NK}l+fpQ6,z+NnV0%NO&D`V|yS8\\)&(k74Y)95,zv0LA)Ke%K&F(Fcj'm>R@Hegda$2Xa[bx+(0`I"], ["issued", 1385529261], ["lifetime", 3600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid2"]]
208
281
   (0.0ms) RELEASE SAVEPOINT active_record_1
209
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`')
282
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid3' AND handle = 'U@w^>8HJ5E,G2EreN''GxTI&Hr+~%/71W=Qx?xHGeL4.LOUS@S,KYlWTu?SA''Cn-hu{_^Ui%S1Z"Bs''Z3<$LY>"eO,.YmzEihj;Oh^*8M>#DNS\46YxrC8?QxnCcL$qc>')
210
283
   (0.0ms) SAVEPOINT active_record_1
211
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "&1T|CbG:?R2x#O~PB.B{7{m+Q2g';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`"], ["issued", 1385534895], ["lifetime", 600], ["secret", "\x89d\n\x14\xA8\xF2\x12\x00\xB5O.\xF3\x99\xEC/PP\eeY"], ["server_url", "http://www.myopenid.com/openid"]]
284
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "U@w^>8HJ5E,G2EreN'GxTI&Hr+~%/71W=Qx?xHGeL4.LOUS@S,KYlWTu?SA'Cn-hu{_^Ui%S1Z\"Bs'Z3<$LY>\"eO,.YmzEihj;Oh^*8M>#DNS\\46YxrC8?QxnCcL$qc>"], ["issued", 1385536456], ["lifetime", 600], ["secret", "<20 bytes of binary data>"], ["server_url", "http://www.myopenid.com/openid3"]]
212
285
   (0.0ms) RELEASE SAVEPOINT active_record_1
213
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
214
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR'
215
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`'
216
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0')
217
-  (0.0ms) SAVEPOINT active_record_1
218
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "^(,B'<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu']\#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB'Y`B?%UMbSk&/@\\~\"UQpM4rB&5q[MyU%sO;(j>L<O0"], ["issued", 1385534896], ["lifetime", 100], ["secret", "\xA7\x99\xD4\xA0`\x10\x9A\xE0\xD6aYB\x95j\x82\xCF'\xC7\xDE\xDD"], ["server_url", "http://www.myopenid.com/openid"]]
219
-  (0.0ms) RELEASE SAVEPOINT active_record_1
220
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
221
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR'
222
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`'
223
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0'
224
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`')
225
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
226
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR'
227
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`'
228
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0'
229
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`')
230
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0')
231
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
232
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR'
233
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`'
234
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0'
235
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`')
236
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
237
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0')
238
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
239
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR'
240
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`'
241
- OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0'
242
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '&1T|CbG:?R2x#O~PB.B{7{m+Q2g'';uOocm,pODbGxobLtUjs2Xq|ro?Fi^a[p}dox~&s;tPlM$6^[Hkh50n}C>L@0~D*jCCH53'')_v!JQFY1_F>y7!^Vgz;ND(^tRL}`')
243
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '7F};n)^DB}m"I}(3Zho|`6Qr''Y&,/Ko1^%g1]x''l\s1Y+oh)A1N%/}YL:`\)9E%gtyv,DJq<@p`r{!9~}ii=uCOh*a7-fmDk%\]|z:K+W4:8J5\nWfs"<yy=zY5?.,PR')
244
- SQL (0.0ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '^(,B''<UPPuQn$F9iR#=g6]P1!pZpA*c>bD&lxu'']#@.OoWRIm3X16Wm(>v8!(z5*~[93nFV`^qa#jZZ)O5{LtB''Y`B?%UMbSk&/@\~"UQpM4rB&5q[MyU%sO;(j>L<O0')
245
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385534894)
246
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'D97Zg%#?DUq.?9DQY`]#p8<x}^"+UaAgq@MTTnbxPGzL^p|BPvex*{*TSj|w_9]"^''*/V"8b).~dk8#9aE-A$7:g:XB4cS!Jn2Q:T@X5xd1Z''XDG<sALRuP<o<)iyj6u')
247
-  (0.0ms) SAVEPOINT active_record_1
248
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "D97Zg%#?DUq.?9DQY`]#p8<x}^\"+UaAgq@MTTnbxPGzL^p|BPvex*{*TSj|w_9]\"^'*/V\"8b).~dk8#9aE-A$7:g:XB4cS!Jn2Q:T@X5xd1Z'XDG<sALRuP<o<)iyj6u"], ["issued", 1385531294], ["lifetime", 7200], ["secret", "\xCA\nv\xD9X\x18X\xBBF.\xDB\xB1\xE9\\\x86\xB6\x7F\x05\x15\x92"], ["server_url", "http://www.myopenid.com/openid1"]]
249
-  (0.0ms) RELEASE SAVEPOINT active_record_1
250
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'GyU-WMg8R%g\&Oo''0<8I?gf"~58hr''uURGq[T.*F=hB[!LkYgH<''b''TDK+k7X?=Du~j+;(KQ_Q_pw}''_4;Xe%M8$''4aKJ7XaxzR`i1|RB^IxBO#m/l(P&x}iQmM83.|3')
251
-  (0.0ms) SAVEPOINT active_record_1
252
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "GyU-WMg8R%g\\&Oo'0<8I?gf\"~58hr'uURGq[T.*F=hB[!LkYgH<'b'TDK+k7X?=Du~j+;(KQ_Q_pw}'_4;Xe%M8$'4aKJ7XaxzR`i1|RB^IxBO#m/l(P&x}iQmM83.|3"], ["issued", 1385527694], ["lifetime", 3600], ["secret", "\x0F\xDEN1`\xBB8\x80w\xE6\xC7\xF8\x8E/\xE74\xA1S22"], ["server_url", "http://www.myopenid.com/openid1"]]
253
-  (0.0ms) RELEASE SAVEPOINT active_record_1
254
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid2' AND handle = '^IDZJ?!O|x7B9sy:+<bbvrE9GzVOeoZ}\-iPiAoC?f5v''*;48H3x)9hI`YW3=B6.UrpuxHx_^})j3~[Y</jPY<LHGFu|9U8x=flZ6g:tyl6:NqOxzVteNXP$a"`lWCH7')
255
-  (0.0ms) SAVEPOINT active_record_1
256
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "^IDZJ?!O|x7B9sy:+<bbvrE9GzVOeoZ}\\-iPiAoC?f5v'*;48H3x)9hI`YW3=B6.UrpuxHx_^})j3~[Y</jPY<LHGFu|9U8x=flZ6g:tyl6:NqOxzVteNXP$a\"`lWCH7"], ["issued", 1385527694], ["lifetime", 3600], ["secret", "t\xA6o\x14\x8D\x99]\xAA\xFE\xED\xC7\xD5h\r\x06\xA0\xFA\xBFM0"], ["server_url", "http://www.myopenid.com/openid2"]]
257
-  (0.0ms) RELEASE SAVEPOINT active_record_1
258
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid3' AND handle = ':AF/4(Jf;p`ylU>GF4%;*~$qU9[<&E`3P0u:/^Vi._OV=Bqq*Iq6]r?)d4a?e|,R.t9Z^U5?wk'')pR(i86iSu9FQR]vW{<%Yn)1C$''bcY"boY|-{msEkU8E5^g~mQ]''%')
259
-  (0.0ms) SAVEPOINT active_record_1
260
- SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", ":AF/4(Jf;p`ylU>GF4%;*~$qU9[<&E`3P0u:/^Vi._OV=Bqq*Iq6]r?)d4a?e|,R.t9Z^U5?wk')pR(i86iSu9FQR]vW{<%Yn)1C$'bcY\"boY|-{msEkU8E5^g~mQ]'%"], ["issued", 1385534889], ["lifetime", 600], ["secret", "\x1C=\xD6hq\x7F\x94\xC1}sA\rMx\xC4\xD9Lp\x06\xA9"], ["server_url", "http://www.myopenid.com/openid3"]]
261
-  (0.0ms) RELEASE SAVEPOINT active_record_1
262
- SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385534894)
263
-  (0.1ms) rollback transaction
286
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385536461)
287
+  (0.1ms) rollback transaction