remote_database_cleaner_home_rails 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +21 -0
  4. data/app/assets/javascripts/remote_database_cleaner_home_rails/application.js +13 -0
  5. data/app/assets/stylesheets/remote_database_cleaner_home_rails/application.css +13 -0
  6. data/app/controllers/remote_database_cleaner_home_rails/home_controller.rb +23 -0
  7. data/app/helpers/remote_database_cleaner_home_rails/application_helper.rb +4 -0
  8. data/app/views/layouts/remote_database_cleaner_home_rails/application.html.erb +14 -0
  9. data/config/routes.rb +3 -0
  10. data/lib/remote_database_cleaner_home_rails.rb +44 -0
  11. data/lib/remote_database_cleaner_home_rails/engine.rb +21 -0
  12. data/lib/tasks/remote_database_cleaner_home_rails_tasks.rake +4 -0
  13. data/spec/controllers/home_controller_spec.rb +52 -0
  14. data/spec/dummy/README.rdoc +28 -0
  15. data/spec/dummy/Rakefile +6 -0
  16. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  17. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  18. data/spec/dummy/app/controllers/application_controller.rb +15 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/spec/dummy/bin/bundle +3 -0
  22. data/spec/dummy/bin/rails +4 -0
  23. data/spec/dummy/bin/rake +4 -0
  24. data/spec/dummy/config.ru +4 -0
  25. data/spec/dummy/config/application.rb +28 -0
  26. data/spec/dummy/config/boot.rb +5 -0
  27. data/spec/dummy/config/database.yml +25 -0
  28. data/spec/dummy/config/environment.rb +5 -0
  29. data/spec/dummy/config/environments/development.rb +29 -0
  30. data/spec/dummy/config/environments/production.rb +80 -0
  31. data/spec/dummy/config/environments/test.rb +36 -0
  32. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/spec/dummy/config/initializers/inflections.rb +16 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/remote_database_cleaner_home_rails.rb +4 -0
  37. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  38. data/spec/dummy/config/initializers/session_store.rb +3 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +23 -0
  41. data/spec/dummy/config/routes.rb +4 -0
  42. data/spec/dummy/db/test.sqlite3 +0 -0
  43. data/spec/dummy/log/test.log +1244 -0
  44. data/spec/dummy/public/404.html +58 -0
  45. data/spec/dummy/public/422.html +58 -0
  46. data/spec/dummy/public/500.html +57 -0
  47. data/spec/dummy/public/favicon.ico +0 -0
  48. data/spec/models/remote_database_cleaner_home_rails_spec.rb +25 -0
  49. data/spec/spec_helper.rb +22 -0
  50. metadata +184 -0
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,29 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,4 @@
1
+ RemoteDatabaseCleanerHomeRails.configure do |config|
2
+ config.skip_before_filter = [:authenticate, :another_authentication]
3
+ config.strategy = :truncation
4
+ end
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '1751cf1013d221377c4f75bbbd00ff8cac311e1769dfbf9efb701aca2b369cfdba63ab6967ca6b9a7d1abcce7327caab1a762d7f7026027bcb08e6b5eda027b4'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount RemoteDatabaseCleanerHomeRails::Engine => "/remote_database_cleaner_home_rails"
4
+ end
File without changes
@@ -0,0 +1,1244 @@
1
+  (0.2ms) begin transaction
2
+  (0.0ms) rollback transaction
3
+  (0.0ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.0ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.3ms) begin transaction
8
+  (0.0ms) rollback transaction
9
+  (0.0ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+  (0.2ms) begin transaction
14
+  (0.0ms) rollback transaction
15
+  (0.0ms) begin transaction
16
+  (0.0ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+  (0.0ms) rollback transaction
19
+  (0.3ms) begin transaction
20
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
21
+ Redirected to http://test.host/401.html
22
+ Filter chain halted as :authenticate rendered or redirected
23
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
24
+  (0.1ms) rollback transaction
25
+  (0.1ms) begin transaction
26
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
27
+ Redirected to http://test.host/401.html
28
+ Filter chain halted as :authenticate rendered or redirected
29
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
30
+  (0.1ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+  (0.0ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+  (0.0ms) rollback transaction
35
+  (0.0ms) begin transaction
36
+  (0.0ms) rollback transaction
37
+  (0.2ms) begin transaction
38
+  (0.0ms) rollback transaction
39
+  (0.0ms) begin transaction
40
+  (0.0ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+  (0.0ms) rollback transaction
43
+  (0.0ms) begin transaction
44
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
45
+ Completed 500 Internal Server Error in 2ms
46
+  (0.0ms) rollback transaction
47
+  (0.0ms) begin transaction
48
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
49
+ Completed 500 Internal Server Error in 2ms
50
+  (0.0ms) rollback transaction
51
+  (0.2ms) begin transaction
52
+  (0.0ms) rollback transaction
53
+  (0.0ms) begin transaction
54
+  (0.0ms) rollback transaction
55
+  (0.0ms) begin transaction
56
+  (0.0ms) rollback transaction
57
+  (0.0ms) begin transaction
58
+  (0.0ms) rollback transaction
59
+  (0.0ms) begin transaction
60
+  (0.0ms) rollback transaction
61
+  (0.2ms) begin transaction
62
+  (0.0ms) rollback transaction
63
+  (0.0ms) begin transaction
64
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
65
+ Completed 500 Internal Server Error in 2ms
66
+  (0.0ms) rollback transaction
67
+  (0.0ms) begin transaction
68
+  (0.0ms) rollback transaction
69
+  (0.0ms) begin transaction
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+  (0.0ms) rollback transaction
73
+  (0.2ms) begin transaction
74
+  (0.1ms) rollback transaction
75
+  (0.0ms) begin transaction
76
+  (0.0ms) rollback transaction
77
+  (0.0ms) begin transaction
78
+  (0.0ms) rollback transaction
79
+  (0.0ms) begin transaction
80
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
81
+ Completed 500 Internal Server Error in 2ms
82
+  (0.0ms) rollback transaction
83
+  (0.0ms) begin transaction
84
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
85
+ Completed 500 Internal Server Error in 0ms
86
+  (0.0ms) rollback transaction
87
+  (0.2ms) begin transaction
88
+  (0.0ms) rollback transaction
89
+  (0.0ms) begin transaction
90
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
91
+ Completed 500 Internal Server Error in 2ms
92
+  (0.0ms) rollback transaction
93
+  (0.0ms) begin transaction
94
+  (0.0ms) rollback transaction
95
+  (0.0ms) begin transaction
96
+  (0.0ms) rollback transaction
97
+  (0.0ms) begin transaction
98
+  (0.0ms) rollback transaction
99
+  (0.2ms) begin transaction
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
103
+ Completed 500 Internal Server Error in 2ms
104
+  (0.0ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+  (0.0ms) rollback transaction
107
+  (0.0ms) begin transaction
108
+  (0.0ms) rollback transaction
109
+  (0.0ms) begin transaction
110
+  (0.0ms) rollback transaction
111
+  (0.2ms) begin transaction
112
+  (0.0ms) rollback transaction
113
+  (0.0ms) begin transaction
114
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
115
+ Completed 500 Internal Server Error in 2ms
116
+  (0.0ms) rollback transaction
117
+  (0.0ms) begin transaction
118
+  (0.0ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+  (0.0ms) rollback transaction
121
+  (0.0ms) begin transaction
122
+  (0.0ms) rollback transaction
123
+  (0.2ms) begin transaction
124
+  (0.0ms) rollback transaction
125
+  (0.0ms) begin transaction
126
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
127
+ Completed 500 Internal Server Error in 2ms
128
+  (0.0ms) rollback transaction
129
+  (0.0ms) begin transaction
130
+  (0.0ms) rollback transaction
131
+  (0.0ms) begin transaction
132
+  (0.0ms) rollback transaction
133
+  (0.0ms) begin transaction
134
+  (0.0ms) rollback transaction
135
+  (0.2ms) begin transaction
136
+  (0.0ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
139
+ Completed 500 Internal Server Error in 2ms
140
+  (0.0ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+  (0.0ms) rollback transaction
143
+  (0.0ms) begin transaction
144
+  (0.0ms) rollback transaction
145
+  (0.0ms) begin transaction
146
+  (0.0ms) rollback transaction
147
+  (0.2ms) begin transaction
148
+  (0.0ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+  (0.0ms) rollback transaction
151
+  (0.0ms) begin transaction
152
+  (0.0ms) rollback transaction
153
+  (0.0ms) begin transaction
154
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
155
+ Completed 500 Internal Server Error in 2ms
156
+  (0.0ms) rollback transaction
157
+  (0.0ms) begin transaction
158
+  (0.0ms) rollback transaction
159
+  (0.2ms) begin transaction
160
+  (0.0ms) rollback transaction
161
+  (0.2ms) begin transaction
162
+  (0.0ms) rollback transaction
163
+  (0.2ms) begin transaction
164
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
165
+ Completed 500 Internal Server Error in 17ms
166
+  (0.1ms) rollback transaction
167
+  (0.2ms) begin transaction
168
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
169
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
170
+  (0.1ms) rollback transaction
171
+  (0.2ms) begin transaction
172
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
173
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
174
+  (0.0ms) rollback transaction
175
+  (0.2ms) begin transaction
176
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
177
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
178
+  (0.0ms) rollback transaction
179
+  (0.2ms) begin transaction
180
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
181
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
182
+  (0.1ms) rollback transaction
183
+  (0.2ms) begin transaction
184
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
185
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
186
+  (0.0ms) rollback transaction
187
+  (0.2ms) begin transaction
188
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
189
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
190
+  (0.1ms) rollback transaction
191
+  (0.2ms) begin transaction
192
+  (0.0ms) rollback transaction
193
+  (0.2ms) begin transaction
194
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
195
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
196
+  (0.1ms) rollback transaction
197
+  (0.2ms) begin transaction
198
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
199
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
200
+  (0.1ms) rollback transaction
201
+  (0.2ms) begin transaction
202
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
203
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
204
+  (0.1ms) rollback transaction
205
+  (0.2ms) begin transaction
206
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
207
+ Redirected to http://test.host/401.html
208
+ Filter chain halted as :authenticate rendered or redirected
209
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
210
+  (0.1ms) rollback transaction
211
+  (0.2ms) begin transaction
212
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
213
+ Redirected to http://test.host/401.html
214
+ Filter chain halted as :authenticate rendered or redirected
215
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
216
+  (0.1ms) rollback transaction
217
+  (0.2ms) begin transaction
218
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
219
+ Redirected to http://test.host/401.html
220
+ Filter chain halted as :authenticate rendered or redirected
221
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
222
+  (0.1ms) rollback transaction
223
+  (0.2ms) begin transaction
224
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
225
+ Redirected to http://test.host/401.html
226
+ Filter chain halted as :authenticate rendered or redirected
227
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
228
+  (0.1ms) rollback transaction
229
+  (0.2ms) begin transaction
230
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
231
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
232
+  (0.0ms) rollback transaction
233
+  (0.0ms) begin transaction
234
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
235
+ Completed 500 Internal Server Error in 2ms
236
+  (0.1ms) rollback transaction
237
+  (0.2ms) begin transaction
238
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
239
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
240
+  (0.0ms) rollback transaction
241
+  (0.0ms) begin transaction
242
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
243
+ Completed 500 Internal Server Error in 2ms
244
+  (0.1ms) rollback transaction
245
+  (0.2ms) begin transaction
246
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
247
+ Completed 500 Internal Server Error in 1ms
248
+  (0.1ms) rollback transaction
249
+  (0.0ms) begin transaction
250
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
251
+ Completed 500 Internal Server Error in 2ms
252
+  (0.0ms) rollback transaction
253
+  (0.2ms) begin transaction
254
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
255
+ Completed 500 Internal Server Error in 1ms
256
+  (0.1ms) rollback transaction
257
+  (0.2ms) begin transaction
258
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
259
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
260
+  (0.0ms) rollback transaction
261
+  (0.2ms) begin transaction
262
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
263
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
264
+  (0.0ms) rollback transaction
265
+  (0.2ms) begin transaction
266
+  (0.0ms) rollback transaction
267
+  (0.2ms) begin transaction
268
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
269
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
270
+  (0.1ms) rollback transaction
271
+  (0.2ms) begin transaction
272
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
273
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
274
+  (0.0ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
277
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
278
+  (0.0ms) rollback transaction
279
+  (0.2ms) begin transaction
280
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
281
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
282
+  (0.1ms) rollback transaction
283
+  (0.2ms) begin transaction
284
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
285
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
286
+  (0.0ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
289
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
290
+  (0.0ms) rollback transaction
291
+  (0.2ms) begin transaction
292
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
293
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
294
+  (0.1ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
297
+ Completed 500 Internal Server Error in 1ms
298
+  (0.0ms) rollback transaction
299
+  (0.2ms) begin transaction
300
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
301
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
302
+  (0.1ms) rollback transaction
303
+  (0.0ms) begin transaction
304
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
305
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
306
+  (0.0ms) rollback transaction
307
+  (0.2ms) begin transaction
308
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
309
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
310
+  (0.1ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
313
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
314
+  (0.1ms) rollback transaction
315
+  (0.2ms) begin transaction
316
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
317
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
318
+  (0.1ms) rollback transaction
319
+  (0.0ms) begin transaction
320
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
321
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
322
+  (0.0ms) rollback transaction
323
+  (0.2ms) begin transaction
324
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
325
+ Redirected to http://test.host/401.html
326
+ Filter chain halted as :authenticate rendered or redirected
327
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
331
+ Redirected to http://test.host/401.html
332
+ Filter chain halted as :authenticate rendered or redirected
333
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
334
+  (0.0ms) rollback transaction
335
+  (0.0ms) begin transaction
336
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
337
+ Redirected to http://test.host/401.html
338
+ Filter chain halted as :authenticate rendered or redirected
339
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
340
+  (0.0ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+  (0.0ms) rollback transaction
343
+  (0.0ms) begin transaction
344
+  (0.0ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+  (0.0ms) rollback transaction
347
+  (0.2ms) begin transaction
348
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
349
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
350
+  (0.0ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
353
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
354
+  (0.0ms) rollback transaction
355
+  (0.1ms) begin transaction
356
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
357
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
358
+  (0.0ms) rollback transaction
359
+  (0.0ms) begin transaction
360
+  (0.0ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+  (0.0ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+  (0.0ms) rollback transaction
365
+  (0.3ms) begin transaction
366
+  (0.0ms) rollback transaction
367
+  (0.0ms) begin transaction
368
+  (0.0ms) rollback transaction
369
+  (0.0ms) begin transaction
370
+  (0.1ms) rollback transaction
371
+  (0.0ms) begin transaction
372
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
373
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
374
+  (0.0ms) rollback transaction
375
+  (0.0ms) begin transaction
376
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
377
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
378
+  (0.0ms) rollback transaction
379
+  (0.0ms) begin transaction
380
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
381
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
382
+  (0.0ms) rollback transaction
383
+  (0.2ms) begin transaction
384
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
385
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
386
+  (0.1ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
389
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
390
+  (0.0ms) rollback transaction
391
+  (0.0ms) begin transaction
392
+  (0.0ms) rollback transaction
393
+  (0.0ms) begin transaction
394
+  (0.0ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+  (0.0ms) rollback transaction
397
+  (0.2ms) begin transaction
398
+  (0.0ms) rollback transaction
399
+  (0.0ms) begin transaction
400
+  (0.0ms) rollback transaction
401
+  (0.0ms) begin transaction
402
+  (0.0ms) rollback transaction
403
+  (0.0ms) begin transaction
404
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
405
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
406
+  (0.1ms) rollback transaction
407
+  (0.0ms) begin transaction
408
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
409
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
410
+  (0.0ms) rollback transaction
411
+  (0.2ms) begin transaction
412
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
413
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
414
+  (0.0ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
417
+ Completed 500 Internal Server Error in 0ms
418
+  (0.0ms) rollback transaction
419
+  (0.0ms) begin transaction
420
+  (0.0ms) rollback transaction
421
+  (0.0ms) begin transaction
422
+  (0.0ms) rollback transaction
423
+  (0.0ms) begin transaction
424
+  (0.0ms) rollback transaction
425
+  (0.2ms) begin transaction
426
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
427
+ Redirected to http://test.host/401.html
428
+ Filter chain halted as :authenticate rendered or redirected
429
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
430
+  (0.0ms) rollback transaction
431
+  (0.0ms) begin transaction
432
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
433
+ Redirected to http://test.host/401.html
434
+ Filter chain halted as :authenticate rendered or redirected
435
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
436
+  (0.0ms) rollback transaction
437
+  (0.0ms) begin transaction
438
+  (0.0ms) rollback transaction
439
+  (0.0ms) begin transaction
440
+  (0.0ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+  (0.0ms) rollback transaction
443
+  (0.2ms) begin transaction
444
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
445
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
446
+  (0.1ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
449
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
450
+  (0.0ms) rollback transaction
451
+  (0.0ms) begin transaction
452
+  (0.0ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+  (0.0ms) rollback transaction
455
+  (0.0ms) begin transaction
456
+  (0.0ms) rollback transaction
457
+  (0.3ms) begin transaction
458
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
459
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
460
+  (0.1ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
463
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
464
+  (0.1ms) rollback transaction
465
+  (0.0ms) begin transaction
466
+  (0.0ms) rollback transaction
467
+  (0.0ms) begin transaction
468
+  (0.0ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+  (0.0ms) rollback transaction
471
+  (0.2ms) begin transaction
472
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
473
+ Redirected to http://test.host/401.html
474
+ Filter chain halted as :authenticate rendered or redirected
475
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
476
+  (0.1ms) rollback transaction
477
+  (0.0ms) begin transaction
478
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
479
+ Redirected to http://test.host/401.html
480
+ Filter chain halted as :authenticate rendered or redirected
481
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
482
+  (0.0ms) rollback transaction
483
+  (0.0ms) begin transaction
484
+  (0.0ms) rollback transaction
485
+  (0.0ms) begin transaction
486
+  (0.0ms) rollback transaction
487
+  (0.0ms) begin transaction
488
+  (0.0ms) rollback transaction
489
+  (0.2ms) begin transaction
490
+  (0.0ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+  (0.0ms) rollback transaction
493
+  (0.0ms) begin transaction
494
+  (0.0ms) rollback transaction
495
+  (0.0ms) begin transaction
496
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
497
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
498
+  (0.1ms) rollback transaction
499
+  (0.1ms) begin transaction
500
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
501
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
502
+  (0.0ms) rollback transaction
503
+  (0.2ms) begin transaction
504
+  (0.0ms) rollback transaction
505
+  (0.0ms) begin transaction
506
+  (0.0ms) rollback transaction
507
+  (0.0ms) begin transaction
508
+  (0.0ms) rollback transaction
509
+  (0.0ms) begin transaction
510
+  (0.0ms) rollback transaction
511
+  (0.2ms) begin transaction
512
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
513
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
514
+  (0.0ms) rollback transaction
515
+  (0.0ms) begin transaction
516
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
517
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
518
+  (0.0ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
521
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
522
+  (0.0ms) rollback transaction
523
+  (0.0ms) begin transaction
524
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
525
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
526
+  (0.0ms) rollback transaction
527
+  (0.2ms) begin transaction
528
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
529
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
530
+  (0.0ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
533
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
534
+  (0.0ms) rollback transaction
535
+  (0.0ms) begin transaction
536
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
537
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
538
+  (0.0ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
541
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
542
+  (0.0ms) rollback transaction
543
+  (0.2ms) begin transaction
544
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
545
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
546
+  (0.1ms) rollback transaction
547
+  (0.0ms) begin transaction
548
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
549
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
550
+  (0.0ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
553
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
554
+  (0.0ms) rollback transaction
555
+  (0.0ms) begin transaction
556
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
557
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
558
+  (0.0ms) rollback transaction
559
+  (0.2ms) begin transaction
560
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
561
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
562
+  (0.0ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
565
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
566
+  (0.0ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
569
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
570
+  (0.0ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
573
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
577
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
578
+  (0.0ms) rollback transaction
579
+  (0.2ms) begin transaction
580
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
581
+ Completed 500 Internal Server Error in 0ms
582
+  (0.0ms) rollback transaction
583
+  (0.0ms) begin transaction
584
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
585
+ Completed 500 Internal Server Error in 0ms
586
+  (0.0ms) rollback transaction
587
+  (0.0ms) begin transaction
588
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
589
+ Completed 500 Internal Server Error in 0ms
590
+  (0.0ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
593
+ Completed 500 Internal Server Error in 0ms
594
+  (0.0ms) rollback transaction
595
+  (0.0ms) begin transaction
596
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
597
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
598
+  (0.0ms) rollback transaction
599
+  (0.2ms) begin transaction
600
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
601
+ Completed 500 Internal Server Error in 0ms
602
+  (0.0ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+  (0.0ms) rollback transaction
605
+  (0.0ms) begin transaction
606
+  (0.0ms) rollback transaction
607
+  (0.0ms) begin transaction
608
+  (0.0ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+  (0.0ms) rollback transaction
611
+  (0.2ms) begin transaction
612
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
613
+ Completed 500 Internal Server Error in 0ms
614
+  (0.0ms) rollback transaction
615
+  (0.2ms) begin transaction
616
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
617
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
618
+  (0.1ms) rollback transaction
619
+  (0.2ms) begin transaction
620
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
621
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
622
+  (0.1ms) rollback transaction
623
+  (0.2ms) begin transaction
624
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
625
+ Completed 500 Internal Server Error in 0ms
626
+  (0.1ms) rollback transaction
627
+  (0.2ms) begin transaction
628
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
629
+ Completed 200 OK in 10576ms (Views: 0.2ms | ActiveRecord: 0.0ms)
630
+  (0.1ms) rollback transaction
631
+  (0.2ms) begin transaction
632
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
633
+ Completed 200 OK in 7627ms (Views: 0.2ms | ActiveRecord: 0.0ms)
634
+  (0.1ms) rollback transaction
635
+  (0.2ms) begin transaction
636
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
637
+ Completed 200 OK in 6251ms (Views: 0.2ms | ActiveRecord: 0.0ms)
638
+  (0.1ms) rollback transaction
639
+  (0.2ms) begin transaction
640
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
641
+ Completed 200 OK in 4810ms (Views: 0.2ms | ActiveRecord: 0.0ms)
642
+  (0.1ms) rollback transaction
643
+  (0.2ms) begin transaction
644
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
645
+ Completed 200 OK in 10858ms (Views: 0.2ms | ActiveRecord: 0.0ms)
646
+  (0.1ms) rollback transaction
647
+  (0.2ms) begin transaction
648
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
649
+ Completed 200 OK in 5169ms (Views: 0.2ms | ActiveRecord: 0.0ms)
650
+  (0.1ms) rollback transaction
651
+  (0.2ms) begin transaction
652
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
653
+ Completed 200 OK in 3093ms (Views: 0.2ms | ActiveRecord: 0.0ms)
654
+  (0.1ms) rollback transaction
655
+  (0.2ms) begin transaction
656
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
657
+ Completed 200 OK in 2602ms (Views: 0.3ms | ActiveRecord: 0.0ms)
658
+  (0.1ms) rollback transaction
659
+  (0.2ms) begin transaction
660
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
661
+ Completed 200 OK in 1321ms (Views: 0.2ms | ActiveRecord: 0.0ms)
662
+  (0.1ms) rollback transaction
663
+  (0.2ms) begin transaction
664
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
665
+ Completed 200 OK in 1041ms (Views: 0.2ms | ActiveRecord: 0.0ms)
666
+  (0.1ms) rollback transaction
667
+  (0.2ms) begin transaction
668
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
669
+ Completed 200 OK in 5475ms (Views: 0.2ms | ActiveRecord: 0.0ms)
670
+  (0.1ms) rollback transaction
671
+  (0.2ms) begin transaction
672
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
673
+ Completed 200 OK in 4553ms (Views: 0.2ms | ActiveRecord: 0.0ms)
674
+  (0.1ms) rollback transaction
675
+  (0.2ms) begin transaction
676
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
677
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
678
+  (0.1ms) rollback transaction
679
+  (0.3ms) begin transaction
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+  (0.0ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
687
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
688
+  (0.1ms) rollback transaction
689
+  (0.0ms) begin transaction
690
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
691
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
692
+  (0.0ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
695
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
699
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
700
+  (0.1ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
703
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
704
+  (0.0ms) rollback transaction
705
+  (0.2ms) begin transaction
706
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
707
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
708
+  (0.1ms) rollback transaction
709
+  (0.0ms) begin transaction
710
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
711
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
712
+  (0.1ms) rollback transaction
713
+  (0.0ms) begin transaction
714
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
715
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
716
+  (0.0ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
719
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
720
+  (0.0ms) rollback transaction
721
+  (0.0ms) begin transaction
722
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
723
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
724
+  (0.0ms) rollback transaction
725
+  (0.0ms) begin transaction
726
+  (0.0ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+  (0.0ms) rollback transaction
729
+  (0.0ms) begin transaction
730
+  (0.0ms) rollback transaction
731
+  (0.2ms) begin transaction
732
+  (0.0ms) rollback transaction
733
+  (0.0ms) begin transaction
734
+  (0.0ms) rollback transaction
735
+  (0.0ms) begin transaction
736
+  (0.0ms) rollback transaction
737
+  (0.0ms) begin transaction
738
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
739
+ Completed 500 Internal Server Error in 0ms
740
+  (0.0ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
743
+ Completed 500 Internal Server Error in 0ms
744
+  (0.0ms) rollback transaction
745
+  (0.0ms) begin transaction
746
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
747
+ Completed 500 Internal Server Error in 0ms
748
+  (0.0ms) rollback transaction
749
+  (0.0ms) begin transaction
750
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
751
+ Completed 500 Internal Server Error in 0ms
752
+  (0.0ms) rollback transaction
753
+  (0.0ms) begin transaction
754
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
755
+ Completed 500 Internal Server Error in 0ms
756
+  (0.0ms) rollback transaction
757
+  (0.2ms) begin transaction
758
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
759
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
760
+  (0.0ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
763
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
764
+  (0.0ms) rollback transaction
765
+  (0.0ms) begin transaction
766
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
767
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
768
+  (0.0ms) rollback transaction
769
+  (0.0ms) begin transaction
770
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
771
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
772
+  (0.0ms) rollback transaction
773
+  (0.0ms) begin transaction
774
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
775
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
776
+  (0.0ms) rollback transaction
777
+  (0.0ms) begin transaction
778
+  (0.0ms) rollback transaction
779
+  (0.0ms) begin transaction
780
+  (0.0ms) rollback transaction
781
+  (0.0ms) begin transaction
782
+  (0.0ms) rollback transaction
783
+  (0.2ms) begin transaction
784
+  (0.0ms) rollback transaction
785
+  (0.0ms) begin transaction
786
+  (0.0ms) rollback transaction
787
+  (0.0ms) begin transaction
788
+  (0.0ms) rollback transaction
789
+  (0.0ms) begin transaction
790
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
791
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
792
+  (0.0ms) rollback transaction
793
+  (0.0ms) begin transaction
794
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
795
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
796
+  (0.0ms) rollback transaction
797
+  (0.0ms) begin transaction
798
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
799
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
800
+  (0.0ms) rollback transaction
801
+  (0.0ms) begin transaction
802
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
803
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
804
+  (0.0ms) rollback transaction
805
+  (0.0ms) begin transaction
806
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
807
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
808
+  (0.0ms) rollback transaction
809
+  (0.2ms) begin transaction
810
+  (0.0ms) rollback transaction
811
+  (0.0ms) begin transaction
812
+  (0.0ms) rollback transaction
813
+  (0.0ms) begin transaction
814
+  (0.0ms) rollback transaction
815
+  (0.0ms) begin transaction
816
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
817
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
818
+  (0.0ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
821
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
822
+  (0.0ms) rollback transaction
823
+  (0.0ms) begin transaction
824
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
825
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
826
+  (0.0ms) rollback transaction
827
+  (0.0ms) begin transaction
828
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
829
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
830
+  (0.0ms) rollback transaction
831
+  (0.0ms) begin transaction
832
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
833
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
834
+  (0.0ms) rollback transaction
835
+  (0.2ms) begin transaction
836
+  (0.0ms) rollback transaction
837
+  (0.0ms) begin transaction
838
+  (0.0ms) rollback transaction
839
+  (0.0ms) begin transaction
840
+  (0.0ms) rollback transaction
841
+  (0.0ms) begin transaction
842
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
843
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
844
+  (0.1ms) rollback transaction
845
+  (0.0ms) begin transaction
846
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
847
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
848
+  (0.0ms) rollback transaction
849
+  (0.0ms) begin transaction
850
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
851
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
852
+  (0.0ms) rollback transaction
853
+  (0.0ms) begin transaction
854
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
855
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
856
+  (0.0ms) rollback transaction
857
+  (0.0ms) begin transaction
858
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
859
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
860
+  (0.0ms) rollback transaction
861
+  (0.3ms) begin transaction
862
+  (0.1ms) rollback transaction
863
+  (0.1ms) begin transaction
864
+  (0.0ms) rollback transaction
865
+  (0.0ms) begin transaction
866
+  (0.0ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
869
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
870
+  (0.0ms) rollback transaction
871
+  (0.0ms) begin transaction
872
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
873
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
874
+  (0.0ms) rollback transaction
875
+  (0.0ms) begin transaction
876
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
877
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
878
+  (0.0ms) rollback transaction
879
+  (0.0ms) begin transaction
880
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
881
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
882
+  (0.0ms) rollback transaction
883
+  (0.0ms) begin transaction
884
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
885
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
886
+  (0.0ms) rollback transaction
887
+  (0.2ms) begin transaction
888
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
889
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
890
+  (0.0ms) rollback transaction
891
+  (0.0ms) begin transaction
892
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
893
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
894
+  (0.0ms) rollback transaction
895
+  (0.0ms) begin transaction
896
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
897
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
898
+  (0.0ms) rollback transaction
899
+  (0.0ms) begin transaction
900
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
901
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
902
+  (0.0ms) rollback transaction
903
+  (0.0ms) begin transaction
904
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
905
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
906
+  (0.0ms) rollback transaction
907
+  (0.0ms) begin transaction
908
+  (0.0ms) rollback transaction
909
+  (0.0ms) begin transaction
910
+  (0.0ms) rollback transaction
911
+  (0.0ms) begin transaction
912
+  (0.0ms) rollback transaction
913
+  (0.2ms) begin transaction
914
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
915
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
916
+  (0.0ms) rollback transaction
917
+  (0.0ms) begin transaction
918
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
919
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
920
+  (0.0ms) rollback transaction
921
+  (0.0ms) begin transaction
922
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
923
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
924
+  (0.1ms) rollback transaction
925
+  (0.0ms) begin transaction
926
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
927
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
928
+  (0.0ms) rollback transaction
929
+  (0.0ms) begin transaction
930
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
931
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
932
+  (0.0ms) rollback transaction
933
+  (0.0ms) begin transaction
934
+  (0.0ms) rollback transaction
935
+  (0.0ms) begin transaction
936
+  (0.0ms) rollback transaction
937
+  (0.0ms) begin transaction
938
+  (0.0ms) rollback transaction
939
+  (0.2ms) begin transaction
940
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
941
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
942
+  (0.1ms) rollback transaction
943
+  (0.0ms) begin transaction
944
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
945
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
946
+  (0.0ms) rollback transaction
947
+  (0.0ms) begin transaction
948
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
949
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
950
+  (0.0ms) rollback transaction
951
+  (0.0ms) begin transaction
952
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
953
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
954
+  (0.1ms) rollback transaction
955
+  (0.0ms) begin transaction
956
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
957
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
958
+  (0.0ms) rollback transaction
959
+  (0.0ms) begin transaction
960
+  (0.0ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+  (0.0ms) rollback transaction
963
+  (0.0ms) begin transaction
964
+  (0.0ms) rollback transaction
965
+  (0.2ms) begin transaction
966
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
967
+ Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
968
+  (0.1ms) rollback transaction
969
+  (0.1ms) begin transaction
970
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
971
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
972
+  (0.1ms) rollback transaction
973
+  (0.0ms) begin transaction
974
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
975
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
976
+  (0.1ms) rollback transaction
977
+  (0.1ms) begin transaction
978
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
979
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
980
+  (0.1ms) rollback transaction
981
+  (0.0ms) begin transaction
982
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
983
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
984
+  (0.1ms) rollback transaction
985
+  (0.0ms) begin transaction
986
+  (0.0ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+  (0.0ms) rollback transaction
989
+  (0.0ms) begin transaction
990
+  (0.1ms) rollback transaction
991
+  (0.2ms) begin transaction
992
+  (0.1ms) rollback transaction
993
+  (0.0ms) begin transaction
994
+  (0.1ms) rollback transaction
995
+  (0.1ms) begin transaction
996
+  (0.1ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+  (0.1ms) rollback transaction
999
+  (0.0ms) begin transaction
1000
+  (0.0ms) rollback transaction
1001
+  (0.0ms) begin transaction
1002
+  (0.0ms) rollback transaction
1003
+  (0.0ms) begin transaction
1004
+  (0.0ms) rollback transaction
1005
+  (0.0ms) begin transaction
1006
+  (0.0ms) rollback transaction
1007
+  (0.2ms) begin transaction
1008
+  (0.0ms) rollback transaction
1009
+  (0.2ms) begin transaction
1010
+  (0.0ms) rollback transaction
1011
+  (0.2ms) begin transaction
1012
+  (0.0ms) rollback transaction
1013
+  (0.2ms) begin transaction
1014
+  (0.0ms) rollback transaction
1015
+  (0.2ms) begin transaction
1016
+  (0.0ms) rollback transaction
1017
+  (0.2ms) begin transaction
1018
+  (0.0ms) rollback transaction
1019
+  (0.2ms) begin transaction
1020
+  (0.0ms) rollback transaction
1021
+  (0.2ms) begin transaction
1022
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1023
+ Completed 500 Internal Server Error in 0ms
1024
+  (0.0ms) rollback transaction
1025
+  (0.2ms) begin transaction
1026
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1027
+ Completed 500 Internal Server Error in 0ms
1028
+  (0.0ms) rollback transaction
1029
+  (0.2ms) begin transaction
1030
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1031
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1032
+  (0.0ms) rollback transaction
1033
+  (0.2ms) begin transaction
1034
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1035
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1036
+  (0.0ms) rollback transaction
1037
+  (0.2ms) begin transaction
1038
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1039
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1040
+  (0.1ms) rollback transaction
1041
+  (0.0ms) begin transaction
1042
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1043
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1044
+  (0.0ms) rollback transaction
1045
+  (0.0ms) begin transaction
1046
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1047
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1048
+  (0.0ms) rollback transaction
1049
+  (0.0ms) begin transaction
1050
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1051
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1052
+  (0.0ms) rollback transaction
1053
+  (0.0ms) begin transaction
1054
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1055
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1056
+  (0.0ms) rollback transaction
1057
+  (0.2ms) begin transaction
1058
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1059
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1060
+  (0.1ms) rollback transaction
1061
+  (0.0ms) begin transaction
1062
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1063
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1064
+  (0.0ms) rollback transaction
1065
+  (0.0ms) begin transaction
1066
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1067
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1068
+  (0.0ms) rollback transaction
1069
+  (0.0ms) begin transaction
1070
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1071
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1072
+  (0.0ms) rollback transaction
1073
+  (0.0ms) begin transaction
1074
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1075
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1076
+  (0.0ms) rollback transaction
1077
+  (0.0ms) begin transaction
1078
+  (0.0ms) rollback transaction
1079
+  (0.0ms) begin transaction
1080
+  (0.0ms) rollback transaction
1081
+  (0.0ms) begin transaction
1082
+  (0.0ms) rollback transaction
1083
+  (0.2ms) begin transaction
1084
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1085
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1086
+  (0.0ms) rollback transaction
1087
+  (0.0ms) begin transaction
1088
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1089
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1090
+  (0.0ms) rollback transaction
1091
+  (0.0ms) begin transaction
1092
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1093
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1094
+  (0.0ms) rollback transaction
1095
+  (0.0ms) begin transaction
1096
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1097
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1098
+  (0.0ms) rollback transaction
1099
+  (0.0ms) begin transaction
1100
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1101
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1102
+  (0.0ms) rollback transaction
1103
+  (0.0ms) begin transaction
1104
+  (0.0ms) rollback transaction
1105
+  (0.0ms) begin transaction
1106
+  (0.0ms) rollback transaction
1107
+  (0.1ms) begin transaction
1108
+  (0.0ms) rollback transaction
1109
+  (0.2ms) begin transaction
1110
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1111
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1112
+  (0.0ms) rollback transaction
1113
+  (0.0ms) begin transaction
1114
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1115
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1116
+  (0.0ms) rollback transaction
1117
+  (0.0ms) begin transaction
1118
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1119
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1120
+  (0.1ms) rollback transaction
1121
+  (0.0ms) begin transaction
1122
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1123
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1124
+  (0.0ms) rollback transaction
1125
+  (0.0ms) begin transaction
1126
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1127
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1128
+  (0.0ms) rollback transaction
1129
+  (0.0ms) begin transaction
1130
+  (0.0ms) rollback transaction
1131
+  (0.0ms) begin transaction
1132
+  (0.0ms) rollback transaction
1133
+  (0.0ms) begin transaction
1134
+  (0.0ms) rollback transaction
1135
+  (0.2ms) begin transaction
1136
+  (0.0ms) rollback transaction
1137
+  (0.0ms) begin transaction
1138
+  (0.0ms) rollback transaction
1139
+  (0.0ms) begin transaction
1140
+  (0.0ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1143
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1144
+  (0.0ms) rollback transaction
1145
+  (0.0ms) begin transaction
1146
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1147
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1148
+  (0.0ms) rollback transaction
1149
+  (0.0ms) begin transaction
1150
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1151
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1152
+  (0.0ms) rollback transaction
1153
+  (0.0ms) begin transaction
1154
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1155
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1156
+  (0.0ms) rollback transaction
1157
+  (0.0ms) begin transaction
1158
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#create as HTML
1159
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1160
+  (0.0ms) rollback transaction
1161
+  (0.2ms) begin transaction
1162
+  (0.1ms) rollback transaction
1163
+  (0.0ms) begin transaction
1164
+  (0.1ms) rollback transaction
1165
+  (0.0ms) begin transaction
1166
+  (0.0ms) rollback transaction
1167
+  (0.0ms) begin transaction
1168
+  (0.0ms) rollback transaction
1169
+  (0.0ms) begin transaction
1170
+  (0.0ms) rollback transaction
1171
+  (0.0ms) begin transaction
1172
+  (0.0ms) rollback transaction
1173
+  (0.0ms) begin transaction
1174
+  (0.0ms) rollback transaction
1175
+  (0.0ms) begin transaction
1176
+  (0.0ms) rollback transaction
1177
+  (0.2ms) begin transaction
1178
+  (0.0ms) rollback transaction
1179
+  (0.0ms) begin transaction
1180
+  (0.0ms) rollback transaction
1181
+  (0.0ms) begin transaction
1182
+  (0.0ms) rollback transaction
1183
+  (0.0ms) begin transaction
1184
+  (0.0ms) rollback transaction
1185
+  (0.0ms) begin transaction
1186
+  (0.0ms) rollback transaction
1187
+  (0.0ms) begin transaction
1188
+  (0.0ms) rollback transaction
1189
+  (0.0ms) begin transaction
1190
+  (0.0ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+  (0.0ms) rollback transaction
1193
+  (0.2ms) begin transaction
1194
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1195
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1196
+  (0.0ms) rollback transaction
1197
+  (0.0ms) begin transaction
1198
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1199
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1200
+  (0.1ms) rollback transaction
1201
+  (0.0ms) begin transaction
1202
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1203
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1204
+  (0.0ms) rollback transaction
1205
+  (0.0ms) begin transaction
1206
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1207
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1208
+  (0.0ms) rollback transaction
1209
+  (0.0ms) begin transaction
1210
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1211
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1212
+  (0.0ms) rollback transaction
1213
+  (0.0ms) begin transaction
1214
+  (0.0ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+  (0.0ms) rollback transaction
1217
+  (0.0ms) begin transaction
1218
+  (0.0ms) rollback transaction
1219
+  (0.2ms) begin transaction
1220
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1221
+ Completed 403 Forbidden in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1222
+  (0.0ms) rollback transaction
1223
+  (0.0ms) begin transaction
1224
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1225
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1226
+  (0.0ms) rollback transaction
1227
+  (0.1ms) begin transaction
1228
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1229
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1230
+  (0.0ms) rollback transaction
1231
+  (0.0ms) begin transaction
1232
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1233
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1234
+  (0.0ms) rollback transaction
1235
+  (0.0ms) begin transaction
1236
+ Processing by RemoteDatabaseCleanerHomeRails::HomeController#clean as HTML
1237
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1238
+  (0.0ms) rollback transaction
1239
+  (0.0ms) begin transaction
1240
+  (0.0ms) rollback transaction
1241
+  (0.0ms) begin transaction
1242
+  (0.0ms) rollback transaction
1243
+  (0.0ms) begin transaction
1244
+  (0.0ms) rollback transaction