gxapi_rails 0.0.2
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +20 -0
- data/README.md +161 -0
- data/Rakefile +25 -0
- data/app/helpers/gxapi_helper.rb +108 -0
- data/lib/gxapi.rb +160 -0
- data/lib/gxapi/base.rb +100 -0
- data/lib/gxapi/controller_methods.rb +41 -0
- data/lib/gxapi/engine.rb +14 -0
- data/lib/gxapi/google_analytics.rb +193 -0
- data/lib/gxapi/ostruct.rb +86 -0
- data/lib/gxapi/version.rb +3 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/posts_controller.rb +11 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/posts_helper.rb +2 -0
- data/spec/dummy/app/models/post.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/posts/_form.html.erb +25 -0
- data/spec/dummy/app/views/posts/edit.html.erb +6 -0
- data/spec/dummy/app/views/posts/index.html.erb +36 -0
- data/spec/dummy/app/views/posts/new.html.erb +5 -0
- data/spec/dummy/app/views/posts/show.html.erb +15 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +70 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/database.yml.default +111 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +38 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/gxapi.yml +17 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/konfig/application.rb +16 -0
- data/spec/dummy/config/konfig/development.rb +10 -0
- data/spec/dummy/config/konfig/production.rb +3 -0
- data/spec/dummy/config/konfig/test.rb +3 -0
- data/spec/dummy/config/konfig/test_prod.rb +3 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/test.p12 +0 -0
- data/spec/dummy/data/log/dummy/development.log +113 -0
- data/spec/dummy/data/log/dummy/test.log +927 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +1443 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/features/display_variant_js_spec.rb +34 -0
- data/spec/helpers/gxapi_helper_spec.rb +63 -0
- data/spec/lib/gxapi/base_spec.rb +80 -0
- data/spec/lib/gxapi/google_analytics_spec.rb +70 -0
- data/spec/lib/gxapi_spec.rb +32 -0
- data/spec/spec_helper.rb +32 -0
- metadata +233 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
39
|
+
# Use a different logger for distributed setups
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
|
+
|
42
|
+
# Use a different cache store in production
|
43
|
+
# config.cache_store = :mem_cache_store
|
44
|
+
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
47
|
+
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
+
# config.assets.precompile += %w( search.js )
|
50
|
+
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
53
|
+
|
54
|
+
# Enable threaded mode
|
55
|
+
# config.threadsafe!
|
56
|
+
|
57
|
+
# 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)
|
59
|
+
config.i18n.fallbacks = true
|
60
|
+
|
61
|
+
# Send deprecation notices to registered listeners
|
62
|
+
config.active_support.deprecation = :notify
|
63
|
+
|
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
|
67
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
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"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = true
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
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
|
36
|
+
config.active_support.deprecation = :stderr
|
37
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
development:
|
2
|
+
google_analytics:
|
3
|
+
account_id: 2633140
|
4
|
+
profile_id: 73788770
|
5
|
+
web_property_id: UA-2633140-6
|
6
|
+
google:
|
7
|
+
email: 211964556496-8mbenq3f33ectl10v6sq9druaphhu7q6@developer.gserviceaccount.com
|
8
|
+
private_key_path: '<%= Rails.root.join("config", "test.p12").to_s %>'
|
9
|
+
|
10
|
+
test:
|
11
|
+
google_analytics:
|
12
|
+
account_id: 2633140
|
13
|
+
profile_id: 73788770
|
14
|
+
web_property_id: UA-2633140-6
|
15
|
+
google:
|
16
|
+
email: 211964556496-8mbenq3f33ectl10v6sq9druaphhu7q6@developer.gserviceaccount.com
|
17
|
+
private_key_path: '<%= Rails.root.join("config", "test.p12").to_s %>'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '31f72aa8c0a14a5427c2506f7cd354710fad72121eb99fec037690075ac4b15eaf49b13d14814ac733200d8cd44c8c0aa10b8b54709153906e8ff2b91436e8de'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
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
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
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
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#
|
2
|
+
# konfig do
|
3
|
+
# emails do
|
4
|
+
# default_from "foo@bar.com"
|
5
|
+
# delay(:sent_at){ Time.now }
|
6
|
+
# end
|
7
|
+
# end
|
8
|
+
#
|
9
|
+
# konfig.emails.headers = {"Return-path" => "developers@lifebooker.com"}
|
10
|
+
|
11
|
+
konfig do
|
12
|
+
rails_app do
|
13
|
+
from_app "a"
|
14
|
+
overridden_value "a"
|
15
|
+
end
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,113 @@
|
|
1
|
+
[DEBUG] 98561 2013-06-14 12:58:31 LB - [1m[36m (0.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
2
|
+
[ INFO] 98561 2013-06-14 12:58:39 LB -
|
3
|
+
[ INFO] 98561 2013-06-14 12:58:39 LB -
|
4
|
+
[ INFO] 98561 2013-06-14 12:58:39 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:58:39 -0400
|
5
|
+
[DEBUG] 98561 2013-06-14 12:58:39 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
6
|
+
[DEBUG] 98561 2013-06-14 12:58:39 LB - SQLite3::SQLException: no such table: system_parameters: SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
7
|
+
[ERROR] 98561 2013-06-14 12:58:39 LB::PostsController - Could not find table 'posts'
|
8
|
+
[ERROR] 98561 2013-06-14 12:58:39 LB::PostsController -
|
9
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:16:in `index'
|
10
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
11
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
12
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
13
|
+
[FATAL] 98561 2013-06-14 12:58:39 LB -
|
14
|
+
ActiveRecord::StatementInvalid (Could not find table 'posts'):
|
15
|
+
app/controllers/posts_controller.rb:16:in `index'
|
16
|
+
|
17
|
+
|
18
|
+
[DEBUG] 98575 2013-06-14 12:59:42 LB - [1m[36m (0.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
19
|
+
[DEBUG] 98591 2013-06-14 13:00:17 LB - [1m[36m (0.4ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
20
|
+
[ INFO] 98591 2013-06-14 13:00:20 LB -
|
21
|
+
[ INFO] 98591 2013-06-14 13:00:20 LB -
|
22
|
+
[ INFO] 98591 2013-06-14 13:00:20 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 13:00:20 -0400
|
23
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
24
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - SQLite3::SQLException: no such table: system_parameters: SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
25
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - [1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
26
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - Cache read: sprockets/357970feca3ac29060c1e3861e2c0953
|
27
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - Cache read: sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
28
|
+
[DEBUG] 98591 2013-06-14 13:00:20 LB - Cache read: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
29
|
+
[ERROR] 98591 2013-06-14 13:00:20 LB::PostsController - no such file to load -- sass
|
30
|
+
(in /Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/assets/stylesheets/test/test.scss)
|
31
|
+
[ERROR] 98591 2013-06-14 13:00:20 LB::PostsController -
|
32
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1654845286069940017_70221013125900'
|
33
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
|
34
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:18:in `block in index'
|
35
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/lib/lifebooker_common/controller/api_response.rb:97:in `html_or_api_response'
|
36
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:17:in `index'
|
37
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
38
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
39
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
40
|
+
[FATAL] 98591 2013-06-14 13:00:20 LB -
|
41
|
+
LoadError (no such file to load -- sass
|
42
|
+
(in /Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/assets/stylesheets/test/test.scss)):
|
43
|
+
app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1654845286069940017_70221013125900'
|
44
|
+
app/controllers/posts_controller.rb:18:in `block in index'
|
45
|
+
app/controllers/posts_controller.rb:17:in `index'
|
46
|
+
|
47
|
+
|
48
|
+
[DEBUG] 98827 2013-06-14 14:22:45 LB - [1m[36m (0.4ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
49
|
+
[ INFO] 98827 2013-06-14 14:22:47 LB -
|
50
|
+
[ INFO] 98827 2013-06-14 14:22:47 LB -
|
51
|
+
[ INFO] 98827 2013-06-14 14:22:47 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 14:22:47 -0400
|
52
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
53
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - SQLite3::SQLException: no such table: system_parameters: SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
54
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - [1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
55
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/357970feca3ac29060c1e3861e2c0953
|
56
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
57
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
58
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
59
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/d21006c8d49a25c28b7c721b0c33b05d
|
60
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
61
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/13fe41fee1fe35b49d145bcc06610705
|
62
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/357970feca3ac29060c1e3861e2c0953
|
63
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/13fe41fee1fe35b49d145bcc06610705
|
64
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/8f72dc67b32e7cbec6b9feb5cec51d57
|
65
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
66
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/8f72dc67b32e7cbec6b9feb5cec51d57
|
67
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache write: sprockets/d21006c8d49a25c28b7c721b0c33b05d
|
68
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/cffd775d018f68ce5dba1ee0d951a994
|
69
|
+
[DEBUG] 98827 2013-06-14 14:22:47 LB - Cache read: sprockets/f7cbd26ba1d28d48de824f0e94586655
|
70
|
+
[ERROR] 98827 2013-06-14 14:22:47 LB::PostsController - couldn't find file 'jquery'
|
71
|
+
(in /Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/assets/javascripts/application.js:13)
|
72
|
+
[ERROR] 98827 2013-06-14 14:22:47 LB::PostsController -
|
73
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1548404307642673437_70227654492260'
|
74
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
|
75
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:18:in `block in index'
|
76
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/lib/lifebooker_common/controller/api_response.rb:97:in `html_or_api_response'
|
77
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:17:in `index'
|
78
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
79
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
80
|
+
/Users/dlangevin/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
81
|
+
[FATAL] 98827 2013-06-14 14:22:47 LB -
|
82
|
+
Sprockets::FileNotFound (couldn't find file 'jquery'
|
83
|
+
(in /Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/assets/javascripts/application.js:13)):
|
84
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1548404307642673437_70227654492260'
|
85
|
+
app/controllers/posts_controller.rb:18:in `block in index'
|
86
|
+
app/controllers/posts_controller.rb:17:in `index'
|
87
|
+
|
88
|
+
|
89
|
+
[ INFO] 98827 2013-06-14 14:23:13 LB -
|
90
|
+
[ INFO] 98827 2013-06-14 14:23:13 LB -
|
91
|
+
[ INFO] 98827 2013-06-14 14:23:13 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 14:23:13 -0400
|
92
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
93
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - SQLite3::SQLException: no such table: system_parameters: SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
94
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - [1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
95
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache read: sprockets/cffd775d018f68ce5dba1ee0d951a994
|
96
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache read: sprockets/f7cbd26ba1d28d48de824f0e94586655
|
97
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache write: sprockets/f7cbd26ba1d28d48de824f0e94586655
|
98
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache write: sprockets/2f5173deea6c795b8fdde723bb4b63af
|
99
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache write: sprockets/cffd775d018f68ce5dba1ee0d951a994
|
100
|
+
[DEBUG] 98827 2013-06-14 14:23:13 LB - Cache write: sprockets/2f5173deea6c795b8fdde723bb4b63af
|
101
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
102
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
103
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB - Started GET "/assets/test/test.css?body=1" for 127.0.0.1 at 2013-06-14 14:23:14 -0400
|
104
|
+
[DEBUG] 98827 2013-06-14 14:23:14 LB - Cache read: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
105
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
106
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
107
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB - Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-14 14:23:14 -0400
|
108
|
+
[DEBUG] 98827 2013-06-14 14:23:14 LB - Cache read: sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
109
|
+
[DEBUG] 98827 2013-06-14 14:23:14 LB - Cache read: sprockets/323b1a586d52e4c630c3a64b6fca77b9
|
110
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
111
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB -
|
112
|
+
[ INFO] 98827 2013-06-14 14:23:14 LB - Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-14 14:23:14 -0400
|
113
|
+
[DEBUG] 98827 2013-06-14 14:23:14 LB - Cache read: sprockets/f7cbd26ba1d28d48de824f0e94586655
|
@@ -0,0 +1,927 @@
|
|
1
|
+
[DEBUG] 98367 2013-06-14 12:36:39 LB - [1m[36m (17.8ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
2
|
+
[DEBUG] 98367 2013-06-14 12:36:39 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
3
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[36m (2.5ms)[0m [1mDROP TABLE "posts"[0m
|
4
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
5
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
6
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[35m (0.1ms)[0m begin transaction
|
7
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[36mSQL (84.5ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:36:40 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:36:40 UTC +00:00], ["user_id", nil]]
|
8
|
+
[DEBUG] 98367 2013-06-14 12:36:40 LB - [1m[35m (2.0ms)[0m commit transaction
|
9
|
+
[DEBUG] 98385 2013-06-14 12:39:19 LB - [1m[36m (17.7ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
10
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
11
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
12
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
13
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
14
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[35m (0.1ms)[0m begin transaction
|
15
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[36mSQL (23.3ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:39:20 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:39:20 UTC +00:00], ["user_id", nil]]
|
16
|
+
[DEBUG] 98385 2013-06-14 12:39:20 LB - [1m[35m (2.1ms)[0m commit transaction
|
17
|
+
[DEBUG] 98412 2013-06-14 12:47:02 LB - [1m[36m (17.6ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
18
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
19
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
20
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[35m (1.0ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
21
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
22
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[35m (0.1ms)[0m begin transaction
|
23
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[36mSQL (84.0ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:03 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:03 UTC +00:00], ["user_id", nil]]
|
24
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[35m (2.0ms)[0m commit transaction
|
25
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - Cache read: http://www.example.com/posts.xml?
|
26
|
+
[ INFO] 98412 2013-06-14 12:47:03 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:47:03 -0400
|
27
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
28
|
+
[DEBUG] 98412 2013-06-14 12:47:03 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
29
|
+
[DEBUG] 98425 2013-06-14 12:47:37 LB - [1m[36m (18.1ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
30
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
31
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
32
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
33
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
34
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.1ms)[0m begin transaction
|
35
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (23.2ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["user_id", nil]]
|
36
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (2.1ms)[0m commit transaction
|
37
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
38
|
+
[ INFO] 98425 2013-06-14 12:47:38 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:47:38 -0400
|
39
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
40
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
41
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (1.1ms)[0m [1mDELETE FROM "posts"[0m
|
42
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.1ms)[0m begin transaction
|
43
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["user_id", nil]]
|
44
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.7ms)[0m commit transaction
|
45
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
46
|
+
[ INFO] 98425 2013-06-14 12:47:38 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:47:38 -0400
|
47
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
48
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
49
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts/2.xml?
|
50
|
+
[ INFO] 98425 2013-06-14 12:47:38 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:47:38 -0400
|
51
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
52
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
53
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
54
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.1ms)[0m begin transaction
|
55
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["user_id", nil]]
|
56
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.6ms)[0m commit transaction
|
57
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
58
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache write: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
59
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
60
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
61
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache write: http://www.example.com/posts.xml?
|
62
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts?
|
63
|
+
[ INFO] 98425 2013-06-14 12:47:38 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:47:38 -0400
|
64
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
65
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
66
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
67
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.1ms)[0m begin transaction
|
68
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.8ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["user_id", nil]]
|
69
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.6ms)[0m commit transaction
|
70
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
71
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
72
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
73
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.1ms)[0m begin transaction
|
74
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[36mSQL (0.8ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:47:38 UTC +00:00], ["user_id", nil]]
|
75
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - [1m[35m (0.8ms)[0m commit transaction
|
76
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: http://www.example.com/posts.xml?
|
77
|
+
[DEBUG] 98425 2013-06-14 12:47:38 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
78
|
+
[DEBUG] 98436 2013-06-14 12:48:12 LB - [1m[36m (17.6ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
79
|
+
[DEBUG] 98436 2013-06-14 12:48:12 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
80
|
+
[DEBUG] 98436 2013-06-14 12:48:12 LB - [1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
81
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
82
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (1.1ms)[0m [1mDELETE FROM "posts"[0m
|
83
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
84
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (24.4ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["user_id", nil]]
|
85
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (2.1ms)[0m commit transaction
|
86
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts.xml?
|
87
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
88
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.7ms)[0m [1mDELETE FROM "posts"[0m
|
89
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
90
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["user_id", nil]]
|
91
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.8ms)[0m commit transaction
|
92
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts.xml?
|
93
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
94
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts/2.xml?
|
95
|
+
[ INFO] 98436 2013-06-14 12:48:13 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:48:13 -0400
|
96
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
97
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35mPost Load (1.1ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
98
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
99
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
100
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["user_id", nil]]
|
101
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.6ms)[0m commit transaction
|
102
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts.xml?
|
103
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
104
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts?
|
105
|
+
[ INFO] 98436 2013-06-14 12:48:13 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:48:13 -0400
|
106
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
107
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
108
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
109
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
110
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["user_id", nil]]
|
111
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.8ms)[0m commit transaction
|
112
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts.xml?
|
113
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
114
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.9ms)[0m [1mDELETE FROM "posts"[0m
|
115
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
116
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:13 UTC +00:00], ["user_id", nil]]
|
117
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - [1m[35m (0.7ms)[0m commit transaction
|
118
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: http://www.example.com/posts.xml?
|
119
|
+
[DEBUG] 98436 2013-06-14 12:48:13 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
120
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36m (17.4ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
121
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
122
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36m (1.9ms)[0m [1mDROP TABLE "posts"[0m
|
123
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
124
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (0.7ms)[0m [1mDELETE FROM "posts"[0m
|
125
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.1ms)[0m begin transaction
|
126
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (86.2ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["user_id", nil]]
|
127
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (1.8ms)[0m commit transaction
|
128
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: http://www.example.com/posts.xml?
|
129
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
130
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
131
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.1ms)[0m begin transaction
|
132
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["user_id", nil]]
|
133
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.5ms)[0m commit transaction
|
134
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: http://www.example.com/posts.xml?
|
135
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
136
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: http://www.example.com/posts/2.xml?
|
137
|
+
[ INFO] 98447 2013-06-14 12:48:51 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:48:51 -0400
|
138
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
139
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35mPost Load (1.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
140
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
141
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.1ms)[0m begin transaction
|
142
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:51 UTC +00:00], ["user_id", nil]]
|
143
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - [1m[35m (0.6ms)[0m commit transaction
|
144
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: http://www.example.com/posts.xml?
|
145
|
+
[DEBUG] 98447 2013-06-14 12:48:51 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
146
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: http://www.example.com/posts?
|
147
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache write: 98b4f1ddd1bd676f048b9f43f3f0764b9245404b
|
148
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: 98b4f1ddd1bd676f048b9f43f3f0764b9245404b
|
149
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: http://www.example.com/posts?
|
150
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache write: http://www.example.com/posts?
|
151
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
152
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[35m (0.1ms)[0m begin transaction
|
153
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:52 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:52 UTC +00:00], ["user_id", nil]]
|
154
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[35m (0.6ms)[0m commit transaction
|
155
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: http://www.example.com/posts.xml?
|
156
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
157
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
158
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[35m (0.1ms)[0m begin transaction
|
159
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:48:52 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:48:52 UTC +00:00], ["user_id", nil]]
|
160
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - [1m[35m (0.6ms)[0m commit transaction
|
161
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: http://www.example.com/posts.xml?
|
162
|
+
[DEBUG] 98447 2013-06-14 12:48:52 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
163
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[36m (18.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
164
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
165
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[36m (2.4ms)[0m [1mDROP TABLE "posts"[0m
|
166
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
167
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
168
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[35m (0.1ms)[0m begin transaction
|
169
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[36mSQL (83.9ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:50:35 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:50:35 UTC +00:00], ["user_id", nil]]
|
170
|
+
[DEBUG] 98465 2013-06-14 12:50:35 LB - [1m[35m (2.2ms)[0m commit transaction
|
171
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts.xml?
|
172
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
173
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (1.1ms)[0m [1mDELETE FROM "posts"[0m
|
174
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.1ms)[0m begin transaction
|
175
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["user_id", nil]]
|
176
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.6ms)[0m commit transaction
|
177
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts.xml?
|
178
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
179
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts/2.xml?
|
180
|
+
[ INFO] 98465 2013-06-14 12:50:36 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:50:36 -0400
|
181
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
182
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35mPost Load (1.1ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
183
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mDELETE FROM "posts"[0m
|
184
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.1ms)[0m begin transaction
|
185
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["user_id", nil]]
|
186
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.6ms)[0m commit transaction
|
187
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts.xml?
|
188
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
189
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts?
|
190
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: 98b4f1ddd1bd676f048b9f43f3f0764b9245404b
|
191
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.9ms)[0m [1mDELETE FROM "posts"[0m
|
192
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.1ms)[0m begin transaction
|
193
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["user_id", nil]]
|
194
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.7ms)[0m commit transaction
|
195
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts.xml?
|
196
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
197
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mDELETE FROM "posts"[0m
|
198
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.1ms)[0m begin transaction
|
199
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:50:36 UTC +00:00], ["user_id", nil]]
|
200
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - [1m[35m (0.6ms)[0m commit transaction
|
201
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: http://www.example.com/posts.xml?
|
202
|
+
[DEBUG] 98465 2013-06-14 12:50:36 LB - Cache read: d169cc2e8a7f72462c8c031da3420bfc4a2de641
|
203
|
+
[DEBUG] 98476 2013-06-14 12:51:07 LB - [1m[36m (17.7ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
204
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
205
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
206
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
207
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
208
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.1ms)[0m begin transaction
|
209
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (85.8ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["user_id", nil]]
|
210
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (2.0ms)[0m commit transaction
|
211
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
212
|
+
[ INFO] 98476 2013-06-14 12:51:08 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:51:08 -0400
|
213
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
214
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
215
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (1.1ms)[0m [1mDELETE FROM "posts"[0m
|
216
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.1ms)[0m begin transaction
|
217
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["user_id", nil]]
|
218
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.6ms)[0m commit transaction
|
219
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
220
|
+
[ INFO] 98476 2013-06-14 12:51:08 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:51:08 -0400
|
221
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
222
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
223
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts/2.xml?
|
224
|
+
[ INFO] 98476 2013-06-14 12:51:08 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:51:08 -0400
|
225
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
226
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35mPost Load (1.6ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
227
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
228
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.1ms)[0m begin transaction
|
229
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["user_id", nil]]
|
230
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.6ms)[0m commit transaction
|
231
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
232
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache write: 526ddf95df5bb6f846e002fde46ffef29cb21b04
|
233
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: 526ddf95df5bb6f846e002fde46ffef29cb21b04
|
234
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
235
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache write: http://www.example.com/posts.xml?
|
236
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts?
|
237
|
+
[ INFO] 98476 2013-06-14 12:51:08 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:51:08 -0400
|
238
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
239
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
240
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.9ms)[0m [1mDELETE FROM "posts"[0m
|
241
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.1ms)[0m begin transaction
|
242
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["user_id", nil]]
|
243
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.6ms)[0m commit transaction
|
244
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
245
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: 526ddf95df5bb6f846e002fde46ffef29cb21b04
|
246
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
247
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.1ms)[0m begin transaction
|
248
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:51:08 UTC +00:00], ["user_id", nil]]
|
249
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - [1m[35m (0.5ms)[0m commit transaction
|
250
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: http://www.example.com/posts.xml?
|
251
|
+
[DEBUG] 98476 2013-06-14 12:51:08 LB - Cache read: 526ddf95df5bb6f846e002fde46ffef29cb21b04
|
252
|
+
[DEBUG] 98487 2013-06-14 12:51:56 LB - [1m[36m (17.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
253
|
+
[DEBUG] 98487 2013-06-14 12:51:56 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
254
|
+
[DEBUG] 98487 2013-06-14 12:51:56 LB - [1m[36m (1.0ms)[0m [1mDROP TABLE "posts"[0m
|
255
|
+
[DEBUG] 98487 2013-06-14 12:51:56 LB - [1m[35m (1.2ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
256
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[36mSQL (2.6ms)[0m [1mDELETE FROM "posts"[0m
|
257
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[35m (0.1ms)[0m begin transaction
|
258
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[36mSQL (24.5ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:13 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:13 UTC +00:00], ["user_id", nil]]
|
259
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[35m (0.6ms)[0m commit transaction
|
260
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - Cache read: http://www.example.com/posts.xml?
|
261
|
+
[ INFO] 98487 2013-06-14 12:52:13 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:13 -0400
|
262
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
263
|
+
[DEBUG] 98487 2013-06-14 12:52:13 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
264
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[36mSQL (2.6ms)[0m [1mDELETE FROM "posts"[0m
|
265
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[35m (0.1ms)[0m begin transaction
|
266
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[36mSQL (0.9ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:14 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:14 UTC +00:00], ["user_id", nil]]
|
267
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[35m (0.7ms)[0m commit transaction
|
268
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - Cache read: http://www.example.com/posts.xml?
|
269
|
+
[ INFO] 98487 2013-06-14 12:52:14 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:14 -0400
|
270
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
271
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
272
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - Cache read: http://www.example.com/posts/2.xml?
|
273
|
+
[ INFO] 98487 2013-06-14 12:52:14 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:52:14 -0400
|
274
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
275
|
+
[DEBUG] 98487 2013-06-14 12:52:14 LB - [1m[35mPost Load (1.1ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
276
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[36mSQL (2.6ms)[0m [1mDELETE FROM "posts"[0m
|
277
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[35m (0.1ms)[0m begin transaction
|
278
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[36mSQL (0.9ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:16 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:16 UTC +00:00], ["user_id", nil]]
|
279
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[35m (0.6ms)[0m commit transaction
|
280
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache read: http://www.example.com/posts.xml?
|
281
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache write: 16bc73b5c51473f93c1df552d00d046df5216be2
|
282
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache read: 16bc73b5c51473f93c1df552d00d046df5216be2
|
283
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache read: http://www.example.com/posts.xml?
|
284
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache write: http://www.example.com/posts.xml?
|
285
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - Cache read: http://www.example.com/posts?
|
286
|
+
[ INFO] 98487 2013-06-14 12:52:16 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:52:16 -0400
|
287
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
288
|
+
[DEBUG] 98487 2013-06-14 12:52:16 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
289
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[36mSQL (2.4ms)[0m [1mDELETE FROM "posts"[0m
|
290
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[35m (0.1ms)[0m begin transaction
|
291
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[36mSQL (0.9ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:17 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:17 UTC +00:00], ["user_id", nil]]
|
292
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[35m (0.7ms)[0m commit transaction
|
293
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - Cache read: http://www.example.com/posts.xml?
|
294
|
+
[ INFO] 98487 2013-06-14 12:52:17 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:17 -0400
|
295
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
296
|
+
[DEBUG] 98487 2013-06-14 12:52:17 LB - [1m[35mPost Load (1.1ms)[0m SELECT "posts".* FROM "posts"
|
297
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[36mSQL (2.6ms)[0m [1mDELETE FROM "posts"[0m
|
298
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[35m (0.1ms)[0m begin transaction
|
299
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[36mSQL (0.9ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:18 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:18 UTC +00:00], ["user_id", nil]]
|
300
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[35m (0.7ms)[0m commit transaction
|
301
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - Cache read: http://www.example.com/posts.xml?
|
302
|
+
[ INFO] 98487 2013-06-14 12:52:18 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:18 -0400
|
303
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
304
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
305
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - Cache read: http://www.example.com/posts.xml?
|
306
|
+
[ INFO] 98487 2013-06-14 12:52:18 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:18 -0400
|
307
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
308
|
+
[DEBUG] 98487 2013-06-14 12:52:18 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
309
|
+
[DEBUG] 98498 2013-06-14 12:52:46 LB - [1m[36m (17.4ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
310
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
311
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.9ms)[0m [1mDROP TABLE "posts"[0m
|
312
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
313
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.9ms)[0m [1mDELETE FROM "posts"[0m
|
314
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.1ms)[0m begin transaction
|
315
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (24.2ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["user_id", nil]]
|
316
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.9ms)[0m commit transaction
|
317
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
318
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
319
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
320
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
321
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
322
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.1ms)[0m begin transaction
|
323
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (1.0ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["user_id", nil]]
|
324
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.6ms)[0m commit transaction
|
325
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
326
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
327
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
328
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
329
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts/2.xml?
|
330
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
331
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
332
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (1.1ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
333
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.7ms)[0m [1mDELETE FROM "posts"[0m
|
334
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.1ms)[0m begin transaction
|
335
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["user_id", nil]]
|
336
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.5ms)[0m commit transaction
|
337
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
338
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache write: f685077da00eff8a1cf89cce0441242055670507
|
339
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: f685077da00eff8a1cf89cce0441242055670507
|
340
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
341
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache write: http://www.example.com/posts.xml?
|
342
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts?
|
343
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
344
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
345
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
346
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
347
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.1ms)[0m begin transaction
|
348
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["user_id", nil]]
|
349
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.6ms)[0m commit transaction
|
350
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
351
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
352
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
353
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
354
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (1.0ms)[0m [1mDELETE FROM "posts"[0m
|
355
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.1ms)[0m begin transaction
|
356
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:52:47 UTC +00:00], ["user_id", nil]]
|
357
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35m (0.5ms)[0m commit transaction
|
358
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
359
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
360
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
361
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
362
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - Cache read: http://www.example.com/posts.xml?
|
363
|
+
[ INFO] 98498 2013-06-14 12:52:47 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:52:47 -0400
|
364
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
365
|
+
[DEBUG] 98498 2013-06-14 12:52:47 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
366
|
+
[DEBUG] 98515 2013-06-14 12:53:12 LB - [1m[36m (17.7ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
367
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
368
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - Cache read: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
369
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - Cache generate: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
370
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB::PostsController - Fetching and caching token 2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb for 5 seconds
|
371
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - Cache write: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
372
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB::PostsController - Authenticated :: http://test.host/posts/restricted.json?token=2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb
|
373
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
374
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - Cache read: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
375
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB - Cache fetch_hit: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
376
|
+
[DEBUG] 98515 2013-06-14 12:53:13 LB::PostsController - Authenticated :: http://test.host/posts/restricted.json?token=2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb
|
377
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
378
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB::PostsController - Authenticated Provider::1 http://test.host/posts/restricted.json?token=token
|
379
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
380
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
381
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (8.8ms)[0m [1mDROP TABLE "system_parameters"[0m
|
382
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[35m (4.5ms)[0m CREATE TABLE "system_parameters" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parameter" varchar(255), "current_value" integer)
|
383
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (1.3ms)[0m [1mINSERT INTO system_parameters (parameter, current_value) VALUES ('time_offset', 0)[0m
|
384
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[35m (0.7ms)[0m UPDATE system_parameters SET current_value = '0' WHERE parameter = 'time_offset'
|
385
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
386
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[35m (0.7ms)[0m UPDATE system_parameters SET current_value = '247' WHERE parameter = 'time_offset'
|
387
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
388
|
+
[DEBUG] 98515 2013-06-14 12:57:21 LB - [1m[35m (0.7ms)[0m UPDATE system_parameters SET current_value = '0' WHERE parameter = 'time_offset'
|
389
|
+
[DEBUG] 98515 2013-06-14 12:53:14 LB - [1m[36m (0.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
390
|
+
[ INFO] 98515 2013-06-14 12:53:14 LB::Object - Test
|
391
|
+
[ INFO] 98515 2013-06-14 12:53:14 LB::Object - Test
|
392
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (2.5ms)[0m DROP TABLE "posts"
|
393
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (1.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
394
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (1.1ms)[0m DROP TABLE "users"
|
395
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.9ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "bday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
396
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (1.1ms)[0m DROP TABLE "comments"
|
397
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (1.1ms)[0m [1mCREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "type" varchar(255)) [0m
|
398
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
399
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36mSQL (0.8ms)[0m [1mDELETE FROM "posts"[0m
|
400
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
401
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
402
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mSQL (25.1ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "Body"], ["created_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "Post"], ["updated_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["user_id", nil]]
|
403
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
404
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (0.1ms)[0m begin transaction
|
405
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "test"], ["created_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "test"], ["updated_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["user_id", nil]]
|
406
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (1.0ms)[0m commit transaction
|
407
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
408
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (0.3ms)[0m UPDATE "posts" SET "protected_field" = 'Test', "updated_at" = '2013-06-14 16:53:15.613175' WHERE "posts"."id" = 2
|
409
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
410
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]]
|
411
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (1.1ms)[0m [1mDROP TABLE "posts"[0m
|
412
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
413
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - Cache read: http://www.example.com/posts.json?
|
414
|
+
[ INFO] 98515 2013-06-14 12:53:15 LB - Started GET "/posts.json" for 127.0.0.1 at 2013-06-14 12:53:15 -0400
|
415
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
416
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
417
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - Cache read: http://www.example.com/posts.xml?
|
418
|
+
[ INFO] 98515 2013-06-14 12:53:15 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:53:15 -0400
|
419
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
420
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
421
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - Cache read: http://www.example.com/posts.html?
|
422
|
+
[ INFO] 98515 2013-06-14 12:53:15 LB - Started GET "/posts.html" for 127.0.0.1 at 2013-06-14 12:53:15 -0400
|
423
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
424
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
425
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
426
|
+
[ INFO] 98515 2013-06-14 12:53:15 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:15 -0400
|
427
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
428
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (1.0ms)[0m begin transaction
|
429
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:15 UTC +00:00], ["user_id", 1]]
|
430
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (0.6ms)[0m commit transaction
|
431
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
432
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - Cache read: http://www.example.com/posts/1.html?
|
433
|
+
[ INFO] 98515 2013-06-14 12:53:15 LB - Started GET "/posts/1.html" for 127.0.0.1 at 2013-06-14 12:53:15 -0400
|
434
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
435
|
+
[DEBUG] 98515 2013-06-14 12:53:15 LB - [1m[36mPost Load (1.5ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "1"]]
|
436
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
437
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
438
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
439
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (1.0ms)[0m [1mbegin transaction[0m
|
440
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
441
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
442
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
443
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/2.html?
|
444
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/2.html" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
445
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
446
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
447
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
448
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
449
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
450
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.9ms)[0m begin transaction
|
451
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (0.8ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
452
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.6ms)[0m commit transaction
|
453
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
454
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1
|
455
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
456
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
457
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
458
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.1ms)[0m rollback transaction
|
459
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
460
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
461
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
462
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (2.3ms)[0m [1mcommit transaction[0m
|
463
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
464
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/4.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+New+Title&post%5Buser_id%5D=1
|
465
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started PUT "/posts/4.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+New+Title&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
466
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
467
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "4"]]
|
468
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
469
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.3ms)[0m UPDATE "posts" SET "title" = 'My New Title', "updated_at" = '2013-06-14 16:53:16.094374' WHERE "posts"."id" = 4
|
470
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
471
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
472
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
473
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
474
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
475
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
476
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/5.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1
|
477
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started PUT "/posts/5.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
478
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
479
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "5"]]
|
480
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
481
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.1ms)[0m rollback transaction
|
482
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Failed Saving Post::5 - {:title=>["can't be blank"]}
|
483
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/create_with_response.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
484
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts/create_with_response.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
485
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
486
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (1.0ms)[0m begin transaction
|
487
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
488
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.7ms)[0m commit transaction
|
489
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/create_with_response.json?
|
490
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts/create_with_response.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
491
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
492
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (1.0ms)[0m begin transaction
|
493
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
494
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
495
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
496
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
497
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
498
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (1.0ms)[0m [1mbegin transaction[0m
|
499
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
500
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
501
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
502
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/7.json?callback=my_callback
|
503
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/7.json?callback=my_callback" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
504
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
505
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "7"]]
|
506
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
507
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts"
|
508
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1
|
509
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
510
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
511
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.9ms)[0m begin transaction
|
512
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
513
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
514
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.5ms)[0m rollback transaction
|
515
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" [0m
|
516
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.1ms)[0m begin transaction
|
517
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
518
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.6ms)[0m commit transaction
|
519
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" [0m
|
520
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
521
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/8.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1
|
522
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started PUT "/posts/8.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
523
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
524
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "8"]]
|
525
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
526
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
527
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Failed Saving Post::8 - {:title=>["can't be blank"]}
|
528
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
529
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts"
|
530
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
531
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
532
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
533
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.9ms)[0m begin transaction
|
534
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", 1]]
|
535
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.6ms)[0m commit transaction
|
536
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
537
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/restricted.json?
|
538
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/restricted.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
539
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
540
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Attempted to access http://www.example.com/posts/restricted.json without a token
|
541
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/restricted.json?token=invalidtoken
|
542
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/restricted.json?token=invalidtoken" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
543
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
544
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Authentication failure invalidtoken http://www.example.com/posts/restricted.json?token=invalidtoken
|
545
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Access denied for http://www.example.com/posts/restricted.json?token=invalidtoken using token 'invalidtoken'
|
546
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/restricted.json?token=token
|
547
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/restricted.json?token=token" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
548
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
549
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/restricted.json?token=token
|
550
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/restricted.json?
|
551
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/restricted.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
552
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
553
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/restricted.json
|
554
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/restricted.html?
|
555
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/restricted.html" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
556
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
557
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Attempted to access http://www.example.com/posts/restricted.html without a token
|
558
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/special_access.json?token=token
|
559
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/special_access.json?token=token" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
560
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
561
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/special_access.json?token=token
|
562
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB::PostsController - Access denied for http://www.example.com/posts/special_access.json?token=token using token 'token'
|
563
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/cookies_action.json?
|
564
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/cookies_action.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
565
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
566
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mSQL (2.4ms)[0m [1mDELETE FROM "posts"[0m
|
567
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts/123.json?
|
568
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/posts/123.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
569
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
570
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36mPost Load (1.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "123"]]
|
571
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::PostsController - Couldn't find Post with id=123
|
572
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::PostsController -
|
573
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:26:in `show'
|
574
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:20:in `block (3 levels) in <top (required)>'
|
575
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (1.0ms)[0m DELETE FROM "posts"
|
576
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/no_method_error.json?
|
577
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/no_method_error.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
578
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
579
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::ErrorController - Some Message
|
580
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::ErrorController -
|
581
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/error_controller.rb:5:in `no_method_error'
|
582
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:28:in `block (3 levels) in <top (required)>'
|
583
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
584
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/argument_error.json?
|
585
|
+
[ INFO] 98515 2013-06-14 12:53:16 LB - Started GET "/argument_error.json" for 127.0.0.1 at 2013-06-14 12:53:16 -0400
|
586
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
587
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::ErrorController - Another Message
|
588
|
+
[ERROR] 98515 2013-06-14 12:53:16 LB::ErrorController -
|
589
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/error_controller.rb:8:in `argument_error'
|
590
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:35:in `block (3 levels) in <top (required)>'
|
591
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35m (0.9ms)[0m DROP TABLE "posts"
|
592
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.8ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
593
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.7ms)[0m DELETE FROM "posts"
|
594
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
595
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[35mSQL (0.8ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:53:16 UTC +00:00], ["user_id", nil]]
|
596
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
597
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.xml?
|
598
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache write: 73cbb812fe55113096639e8006848703096a343b
|
599
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: 73cbb812fe55113096639e8006848703096a343b
|
600
|
+
[DEBUG] 98515 2013-06-14 12:53:16 LB - Cache read: http://www.example.com/posts.xml?
|
601
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache write: http://www.example.com/posts.xml?
|
602
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.7ms)[0m DELETE FROM "posts"
|
603
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
604
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["user_id", nil]]
|
605
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
606
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
607
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
608
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
609
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
610
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts/2.xml?
|
611
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
612
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
613
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
614
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
615
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
616
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.8ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["user_id", nil]]
|
617
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
618
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
619
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache write: 647ab89483df35737ea29c492c896e28d301653b
|
620
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: 647ab89483df35737ea29c492c896e28d301653b
|
621
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
622
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache write: http://www.example.com/posts.xml?
|
623
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts?
|
624
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
625
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
626
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
627
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
628
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
629
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.8ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["user_id", nil]]
|
630
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
631
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
632
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
633
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
634
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
635
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.9ms)[0m DELETE FROM "posts"
|
636
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
637
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 16:53:17 UTC +00:00], ["user_id", nil]]
|
638
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
639
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
640
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
641
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
642
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (1.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
643
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - Cache read: http://www.example.com/posts.xml?
|
644
|
+
[ INFO] 98515 2013-06-14 12:53:17 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 12:53:17 -0400
|
645
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
646
|
+
[DEBUG] 98515 2013-06-14 12:53:17 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
647
|
+
[DEBUG] 99446 2013-06-14 16:01:26 LB - [1m[36m (22.8ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
648
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
649
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - Cache read: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
650
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - Cache generate: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
651
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB::PostsController - Fetching and caching token 2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb for 5 seconds
|
652
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - Cache write: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
653
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB::PostsController - Authenticated :: http://test.host/posts/restricted.json?token=2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb
|
654
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
655
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - Cache read: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
656
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB - Cache fetch_hit: UserLogin::Permissions::2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb ({:expires_in=>5 seconds})
|
657
|
+
[DEBUG] 99446 2013-06-14 16:01:27 LB::PostsController - Authenticated :: http://test.host/posts/restricted.json?token=2b95653afc0ea6cf08476febab09caf2cf9ad71f0899f419798136cad1ce58eb
|
658
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
659
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB::PostsController - Authenticated Provider::1 http://test.host/posts/restricted.json?token=token
|
660
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
661
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[35m (0.2ms)[0m select sqlite_version(*)
|
662
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (1.1ms)[0m [1mDROP TABLE "system_parameters"[0m
|
663
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[35m (0.9ms)[0m CREATE TABLE "system_parameters" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parameter" varchar(255), "current_value" integer)
|
664
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (0.7ms)[0m [1mINSERT INTO system_parameters (parameter, current_value) VALUES ('time_offset', 0)[0m
|
665
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[35m (0.7ms)[0m UPDATE system_parameters SET current_value = '0' WHERE parameter = 'time_offset'
|
666
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (0.1ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
667
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[35m (0.8ms)[0m UPDATE system_parameters SET current_value = '247' WHERE parameter = 'time_offset'
|
668
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (0.1ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
669
|
+
[DEBUG] 99446 2013-06-14 16:05:35 LB - [1m[35m (1.1ms)[0m UPDATE system_parameters SET current_value = '0' WHERE parameter = 'time_offset'
|
670
|
+
[DEBUG] 99446 2013-06-14 16:01:28 LB - [1m[36m (0.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
671
|
+
[ INFO] 99446 2013-06-14 16:01:28 LB::Object - Test
|
672
|
+
[ INFO] 99446 2013-06-14 16:01:28 LB::Object - Test
|
673
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (2.4ms)[0m DROP TABLE "posts"
|
674
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.9ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
675
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.7ms)[0m DROP TABLE "users"
|
676
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.9ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "bday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
677
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.9ms)[0m DROP TABLE "comments"
|
678
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.9ms)[0m [1mCREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "type" varchar(255)) [0m
|
679
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
680
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36mSQL (2.4ms)[0m [1mDELETE FROM "posts"[0m
|
681
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
682
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
683
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mSQL (26.0ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "Body"], ["created_at", Fri, 14 Jun 2013 20:01:29 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "Post"], ["updated_at", Fri, 14 Jun 2013 20:01:29 UTC +00:00], ["user_id", nil]]
|
684
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
685
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.1ms)[0m begin transaction
|
686
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "test"], ["created_at", Fri, 14 Jun 2013 20:01:29 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "test"], ["updated_at", Fri, 14 Jun 2013 20:01:29 UTC +00:00], ["user_id", nil]]
|
687
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.6ms)[0m commit transaction
|
688
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
689
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.3ms)[0m UPDATE "posts" SET "protected_field" = 'Test', "updated_at" = '2013-06-14 20:01:29.655635' WHERE "posts"."id" = 2
|
690
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
691
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]]
|
692
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.9ms)[0m [1mDROP TABLE "posts"[0m
|
693
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35m (0.7ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
694
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - Cache read: http://www.example.com/posts.json?
|
695
|
+
[ INFO] 99446 2013-06-14 16:01:29 LB - Started GET "/posts.json" for 127.0.0.1 at 2013-06-14 16:01:29 -0400
|
696
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
697
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
698
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - Cache read: http://www.example.com/posts.xml?
|
699
|
+
[ INFO] 99446 2013-06-14 16:01:29 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 16:01:29 -0400
|
700
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
701
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
702
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - Cache read: http://www.example.com/posts.html?
|
703
|
+
[ INFO] 99446 2013-06-14 16:01:29 LB - Started GET "/posts.html" for 127.0.0.1 at 2013-06-14 16:01:29 -0400
|
704
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
705
|
+
[DEBUG] 99446 2013-06-14 16:01:29 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts"
|
706
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
707
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
708
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
709
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (1.1ms)[0m begin transaction
|
710
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
711
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.5ms)[0m commit transaction
|
712
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
713
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/1.html?
|
714
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/1.html" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
715
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
716
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "1"]]
|
717
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
718
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
719
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
720
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (1.1ms)[0m [1mbegin transaction[0m
|
721
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
722
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
723
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
724
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/2.html?
|
725
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/2.html" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
726
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
727
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.8ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
|
728
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
729
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
730
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.3ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
731
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (1.4ms)[0m begin transaction
|
732
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (1.0ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
733
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.7ms)[0m commit transaction
|
734
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
735
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1
|
736
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
737
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
738
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (1.0ms)[0m [1mbegin transaction[0m
|
739
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.1ms)[0m rollback transaction
|
740
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
741
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
742
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
743
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
744
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
745
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/4.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+New+Title&post%5Buser_id%5D=1
|
746
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started PUT "/posts/4.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+New+Title&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
747
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
748
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "4"]]
|
749
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
750
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.3ms)[0m UPDATE "posts" SET "title" = 'My New Title', "updated_at" = '2013-06-14 20:01:30.253165' WHERE "posts"."id" = 4
|
751
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
752
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
753
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
754
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mSQL (0.8ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
755
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
756
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
757
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/5.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1
|
758
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started PUT "/posts/5.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
759
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
760
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.9ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "5"]]
|
761
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
762
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.1ms)[0m rollback transaction
|
763
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Failed Saving Post::5 - {:title=>["can't be blank"]}
|
764
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/create_with_response.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
765
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts/create_with_response.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
766
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
767
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.9ms)[0m begin transaction
|
768
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
769
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.5ms)[0m commit transaction
|
770
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/create_with_response.json?
|
771
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts/create_with_response.json" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
772
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
773
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.9ms)[0m begin transaction
|
774
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
775
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
776
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
777
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
778
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
779
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
780
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
781
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
782
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
783
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/7.json?callback=my_callback
|
784
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/7.json?callback=my_callback" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
785
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
786
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.8ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "7"]]
|
787
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
788
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts"
|
789
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1
|
790
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
791
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
792
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.8ms)[0m begin transaction
|
793
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
794
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Failed Saving Post::0 - {:title=>["can't be blank"]}
|
795
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.3ms)[0m rollback transaction
|
796
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" [0m
|
797
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.1ms)[0m begin transaction
|
798
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (0.6ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
799
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.5ms)[0m commit transaction
|
800
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "posts" [0m
|
801
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
802
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/8.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1
|
803
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started PUT "/posts/8.json?post%5Bbody%5D=The+body&post%5Btitle%5D=&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
804
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
805
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mPost Load (0.8ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "8"]]
|
806
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
807
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
808
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Failed Saving Post::8 - {:title=>["can't be blank"]}
|
809
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
810
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts"
|
811
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1
|
812
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started POST "/posts.json?post%5Bbody%5D=The+body&post%5Btitle%5D=My+Post&post%5Buser_id%5D=1" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
813
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
814
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (1.1ms)[0m begin transaction
|
815
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "posts" ("body", "created_at", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["body", "The body"], ["created_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["protected_field", nil], ["title", "My Post"], ["updated_at", Fri, 14 Jun 2013 20:01:30 UTC +00:00], ["user_id", 1]]
|
816
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (2.1ms)[0m commit transaction
|
817
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
818
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/restricted.json?
|
819
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/restricted.json" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
820
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
821
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Attempted to access http://www.example.com/posts/restricted.json without a token
|
822
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/restricted.json?token=invalidtoken
|
823
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/restricted.json?token=invalidtoken" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
824
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
825
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Authentication failure invalidtoken http://www.example.com/posts/restricted.json?token=invalidtoken
|
826
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Access denied for http://www.example.com/posts/restricted.json?token=invalidtoken using token 'invalidtoken'
|
827
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/restricted.json?token=token
|
828
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/restricted.json?token=token" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
829
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
830
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/restricted.json?token=token
|
831
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/restricted.json?
|
832
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/restricted.json" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
833
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
834
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/restricted.json
|
835
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/restricted.html?
|
836
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/restricted.html" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
837
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
838
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Attempted to access http://www.example.com/posts/restricted.html without a token
|
839
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/special_access.json?token=token
|
840
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/special_access.json?token=token" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
841
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
842
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Authenticated Provider::1 http://www.example.com/posts/special_access.json?token=token
|
843
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB::PostsController - Access denied for http://www.example.com/posts/special_access.json?token=token using token 'token'
|
844
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - Cache read: http://www.example.com/posts/cookies_action.json?
|
845
|
+
[ INFO] 99446 2013-06-14 16:01:30 LB - Started GET "/posts/cookies_action.json" for 127.0.0.1 at 2013-06-14 16:01:30 -0400
|
846
|
+
[DEBUG] 99446 2013-06-14 16:01:30 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
847
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mSQL (2.1ms)[0m [1mDELETE FROM "posts"[0m
|
848
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts/123.json?
|
849
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts/123.json" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
850
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
851
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "123"]]
|
852
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::PostsController - Couldn't find Post with id=123
|
853
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::PostsController -
|
854
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/posts_controller.rb:26:in `show'
|
855
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:20:in `block (3 levels) in <top (required)>'
|
856
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
857
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/no_method_error.json?
|
858
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/no_method_error.json" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
859
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
860
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::ErrorController - Some Message
|
861
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::ErrorController -
|
862
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/error_controller.rb:5:in `no_method_error'
|
863
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:28:in `block (3 levels) in <top (required)>'
|
864
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m DELETE FROM "posts"
|
865
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/argument_error.json?
|
866
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/argument_error.json" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
867
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.2ms)[0m [1mSELECT current_value FROM system_parameters WHERE parameter = 'time_offset'[0m
|
868
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::ErrorController - Another Message
|
869
|
+
[ERROR] 99446 2013-06-14 16:01:31 LB::ErrorController -
|
870
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/dummy/app/controllers/error_controller.rb:8:in `argument_error'
|
871
|
+
/Users/dlangevin/Documents/Projects/lifebooker_common/spec/requests/rescue_from_spec.rb:35:in `block (3 levels) in <top (required)>'
|
872
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.9ms)[0m DROP TABLE "posts"
|
873
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.8ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "protected_field" varchar(255), "private_field" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
874
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m DELETE FROM "posts"
|
875
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
876
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.9ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["user_id", nil]]
|
877
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
878
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
879
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache write: 73cbb812fe55113096639e8006848703096a343b
|
880
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: 73cbb812fe55113096639e8006848703096a343b
|
881
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
882
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache write: http://www.example.com/posts.xml?
|
883
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.9ms)[0m DELETE FROM "posts"
|
884
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
885
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["user_id", nil]]
|
886
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
887
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
888
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
889
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.3ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
890
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
891
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts/2.xml?
|
892
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts/2.xml" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
893
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
894
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
895
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m DELETE FROM "posts"
|
896
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
897
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["user_id", nil]]
|
898
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
899
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
900
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache write: 2246b0bcecabd0fb8e7480f446a38fa02d696e08
|
901
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: 2246b0bcecabd0fb8e7480f446a38fa02d696e08
|
902
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
903
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache write: http://www.example.com/posts.xml?
|
904
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts?
|
905
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
906
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
907
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
908
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (1.1ms)[0m DELETE FROM "posts"
|
909
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
910
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["user_id", nil]]
|
911
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
912
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
913
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
914
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
915
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
916
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.8ms)[0m DELETE FROM "posts"
|
917
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
918
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35mSQL (0.7ms)[0m INSERT INTO "posts" ("body", "created_at", "private_field", "protected_field", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "xyz"], ["created_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["private_field", nil], ["protected_field", nil], ["title", "x"], ["updated_at", Fri, 14 Jun 2013 20:01:31 UTC +00:00], ["user_id", nil]]
|
919
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
920
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
921
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
922
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
923
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
924
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - Cache read: http://www.example.com/posts.xml?
|
925
|
+
[ INFO] 99446 2013-06-14 16:01:31 LB - Started GET "/posts.xml" for 127.0.0.1 at 2013-06-14 16:01:31 -0400
|
926
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[35m (0.2ms)[0m SELECT current_value FROM system_parameters WHERE parameter = 'time_offset'
|
927
|
+
[DEBUG] 99446 2013-06-14 16:01:31 LB - [1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|