airbrake 8.1.2 → 8.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23d59d240ac51340e6085dbe50d6f42e910f5559
4
- data.tar.gz: 1d656b05b2343324108a63a5d8af10b9401ce5c2
3
+ metadata.gz: 5f8a7ad579328dc255f89e8509485aa27883dc81
4
+ data.tar.gz: 4168af6839c70046df38bdea3b65fc0148c39a29
5
5
  SHA512:
6
- metadata.gz: 5662473402d0e4c6838927750cb45e6efc9b38f1dc74c605c1d54e3b300a36950f69b04cb79cb0cb627cfb16127d5268a3d3e4358df3f4b950a5abd733ca668f
7
- data.tar.gz: 8dbdcbdd1c49fafd94f0c51fcd89fff87772ad39ed3bf82afdf249b42dec447fbafd41e979e99b271cbfde45d2f4a57c66fcc542187ddf6f4cdc10b1b96e2d1a
6
+ metadata.gz: '08466e175ddae1f473f1785077f884ee6849c565ab92806c639fc36646544ed7c637064ed2151b695558d6fabc5a72924f9255fcae72a48dc80c8ab1fbdd8904'
7
+ data.tar.gz: e9bc0a6dab3fc4001b571b3dbafc1a734b97acf828180e3608510225147ebf61f22e84f2cd0db532f0de4a74eecf90eec22cc081d0b72c93e16c24378b83f4fc
@@ -24,7 +24,7 @@ module Airbrake
24
24
  def initialize(logger)
25
25
  __setobj__(logger)
26
26
  @airbrake_notifier = Airbrake[:default]
27
- @airbrake_level = Logger::WARN
27
+ self.level = logger.level
28
28
  end
29
29
 
30
30
  # @see Logger#warn
@@ -51,6 +51,12 @@ module Airbrake
51
51
  super
52
52
  end
53
53
 
54
+ # @see Logger#level=
55
+ def level=(value)
56
+ self.airbrake_level = value < Logger::WARN ? Logger::WARN : value
57
+ super
58
+ end
59
+
54
60
  # Sets airbrake severity level. Does not permit values below `Logger::WARN`.
55
61
  #
56
62
  # @example
@@ -7,3 +7,4 @@ require 'airbrake/rack/http_headers_filter'
7
7
  require 'airbrake/rack/request_body_filter'
8
8
  require 'airbrake/rack/route_filter'
9
9
  require 'airbrake/rack/middleware'
10
+ require 'airbrake/rack/request_store'
@@ -34,10 +34,6 @@ module Airbrake
34
34
  @notice_notifier = Airbrake.notifiers[:notice][notifier_name]
35
35
  @performance_notifier = Airbrake.notifiers[:performance][notifier_name]
36
36
 
37
- # This object is shared among hooks. ActionControllerRouteSubscriber
38
- # writes it and other hooks read it.
39
- @routes = {}
40
-
41
37
  # Prevent adding same filters to the same notifier.
42
38
  return if @@known_notifiers.include?(notifier_name)
43
39
  @@known_notifiers << notifier_name
@@ -51,21 +47,31 @@ module Airbrake
51
47
  install_active_record_hooks if defined?(ActiveRecord)
52
48
  end
53
49
 
54
- # Rescues any exceptions, sends them to Airbrake and re-raises the
55
- # exception.
50
+ # Thread-safe {call!}.
51
+ #
56
52
  # @param [Hash] env the Rack environment
53
+ # @see https://github.com/airbrake/airbrake/issues/904
57
54
  def call(env)
58
- # rubocop:disable Lint/RescueException
55
+ dup.call!(env)
56
+ end
57
+
58
+ # Rescues any exceptions, sends them to Airbrake and re-raises the
59
+ # exception. We also duplicate middleware to guarantee thread-safety.
60
+ #
61
+ # @param [Hash] env the Rack environment
62
+ def call!(env)
63
+ # Rails hooks such as ActionControllerRouteSubscriber rely on this.
64
+ RequestStore[:routes] = {}
65
+
59
66
  begin
60
67
  response = @app.call(env)
61
- rescue Exception => ex
68
+ rescue Exception => ex # rubocop:disable Lint/RescueException
62
69
  notify_airbrake(ex, env)
63
70
  raise ex
64
71
  ensure
65
72
  # Clear routes for the next request.
66
- @routes.clear
73
+ RequestStore.clear
67
74
  end
68
- # rubocop:enable Lint/RescueException
69
75
 
70
76
  exception = framework_exception(env)
71
77
  notify_airbrake(exception, env) if exception
@@ -108,13 +114,13 @@ module Airbrake
108
114
  def install_action_controller_hooks
109
115
  ActiveSupport::Notifications.subscribe(
110
116
  'start_processing.action_controller',
111
- Airbrake::Rails::ActionControllerRouteSubscriber.new(@routes)
117
+ Airbrake::Rails::ActionControllerRouteSubscriber.new
112
118
  )
113
119
 
114
120
  ActiveSupport::Notifications.subscribe(
115
121
  'process_action.action_controller',
116
122
  Airbrake::Rails::ActionControllerNotifySubscriber.new(
117
- @performance_notifier, @routes
123
+ @performance_notifier
118
124
  )
119
125
  )
120
126
  end
@@ -127,9 +133,7 @@ module Airbrake
127
133
  )
128
134
  ActiveSupport::Notifications.subscribe(
129
135
  'sql.active_record',
130
- Airbrake::Rails::ActiveRecordSubscriber.new(
131
- @performance_notifier, @routes
132
- )
136
+ Airbrake::Rails::ActiveRecordSubscriber.new(@performance_notifier)
133
137
  )
134
138
  end
135
139
  end
@@ -0,0 +1,32 @@
1
+ module Airbrake
2
+ module Rack
3
+ # RequestStore is a thin (and limited) wrapper around *Thread.current* that
4
+ # allows writing and reading thread-local variables under the +:airbrake+
5
+ # key.
6
+ # @api private
7
+ # @since v8.1.3
8
+ module RequestStore
9
+ class << self
10
+ # @return [Hash] a hash for all request-related data
11
+ def store
12
+ Thread.current[:airbrake] ||= {}
13
+ end
14
+
15
+ # @return [void]
16
+ def []=(key, value)
17
+ store[key] = value
18
+ end
19
+
20
+ # @return [Object]
21
+ def [](key)
22
+ store[key]
23
+ end
24
+
25
+ # @return [void]
26
+ def clear
27
+ Thread.current[:airbrake] = {}
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -5,18 +5,18 @@ module Airbrake
5
5
  #
6
6
  # @since v8.0.0
7
7
  class ActionControllerNotifySubscriber
8
- def initialize(notifier, routes)
8
+ def initialize(notifier)
9
9
  @notifier = notifier
10
- @routes = routes
11
10
  end
12
11
 
13
12
  def call(*args)
14
- return if @routes.none?
13
+ routes = Airbrake::Rack::RequestStore[:routes]
14
+ return if !routes || routes.none?
15
15
 
16
16
  event = ActiveSupport::Notifications::Event.new(*args)
17
17
  payload = event.payload
18
18
 
19
- @routes.each do |route, method|
19
+ routes.each do |route, method|
20
20
  @notifier.notify(
21
21
  Airbrake::Request.new(
22
22
  method: method,
@@ -5,8 +5,7 @@ module Airbrake
5
5
  #
6
6
  # @since v8.0.0
7
7
  class ActionControllerRouteSubscriber
8
- def initialize(routes)
9
- @routes = routes
8
+ def initialize
10
9
  @all_routes = nil
11
10
  end
12
11
 
@@ -18,7 +17,8 @@ module Airbrake
18
17
  event = ActiveSupport::Notifications::Event.new(*args)
19
18
  payload = event.payload
20
19
 
21
- @routes[find_route(payload[:params])] = payload[:method]
20
+ key = find_route(payload[:params])
21
+ Airbrake::Rack::RequestStore[:routes][key] = payload[:method]
22
22
  end
23
23
 
24
24
  private
@@ -4,14 +4,16 @@ module Airbrake
4
4
  #
5
5
  # @since v8.1.0
6
6
  class ActiveRecordSubscriber
7
- def initialize(notifier, routes)
7
+ def initialize(notifier)
8
8
  @notifier = notifier
9
- @routes = routes
10
9
  end
11
10
 
12
11
  def call(*args)
12
+ routes = Airbrake::Rack::RequestStore[:routes]
13
+ return if !routes || routes.none?
14
+
13
15
  event = ActiveSupport::Notifications::Event.new(*args)
14
- @routes.each do |route, method|
16
+ routes.each do |route, method|
15
17
  @notifier.notify(
16
18
  Airbrake::Query.new(
17
19
  route: route,
@@ -1,5 +1,5 @@
1
1
  # We use Semantic Versioning v2.0.0
2
2
  # More information: http://semver.org/
3
3
  module Airbrake
4
- AIRBRAKE_VERSION = '8.1.2'.freeze
4
+ AIRBRAKE_VERSION = '8.1.3'.freeze
5
5
  end
@@ -25113,3 +25113,1549 @@ Started GET "/resque" for 127.0.0.1 at 2019-02-12 19:24:11 +0200
25113
25113
  Processing by DummyController#resque as HTML
25114
25114
  Rendered dummy/resque.html.erb within layouts/application (1.0ms)
25115
25115
  Completed 200 OK in 9.3ms (Views: 5.9ms | ActiveRecord: 0.0ms)
25116
+ Connecting to database specified by DATABASE_URL
25117
+  (2.8ms) select sqlite_version(*)
25118
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25119
+ Connecting to database specified by DATABASE_URL
25120
+  (0.9ms) select sqlite_version(*)
25121
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25122
+ Connecting to database specified by DATABASE_URL
25123
+  (0.9ms) select sqlite_version(*)
25124
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25125
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25126
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25127
+ Connecting to database specified by DATABASE_URL
25128
+  (0.8ms) select sqlite_version(*)
25129
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25130
+ Connecting to database specified by DATABASE_URL
25131
+  (0.9ms) select sqlite_version(*)
25132
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25133
+ Connecting to database specified by DATABASE_URL
25134
+  (0.9ms) select sqlite_version(*)
25135
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25136
+ Connecting to database specified by DATABASE_URL
25137
+  (1.0ms) select sqlite_version(*)
25138
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25139
+ Connecting to database specified by DATABASE_URL
25140
+  (0.9ms) select sqlite_version(*)
25141
+ NoMethodError: undefined method `each' for nil:NilClass: select sqlite_version(*)
25142
+ Connecting to database specified by DATABASE_URL
25143
+  (0.9ms) select sqlite_version(*)
25144
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25145
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25146
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25147
+ Connecting to database specified by DATABASE_URL
25148
+  (0.9ms) select sqlite_version(*)
25149
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25150
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25151
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25152
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:01 +0200
25153
+ Processing by DummyController#crash as HTML
25154
+
25155
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25156
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25157
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25158
+ lib/airbrake/rack/middleware.rb:55:in `call'
25159
+
25160
+
25161
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:03 +0200
25162
+ Processing by DummyController#crash as HTML
25163
+
25164
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25165
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25166
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25167
+ lib/airbrake/rack/middleware.rb:55:in `call'
25168
+
25169
+
25170
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:05 +0200
25171
+ Processing by DummyController#crash as HTML
25172
+
25173
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25174
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25175
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25176
+ lib/airbrake/rack/middleware.rb:55:in `call'
25177
+
25178
+
25179
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:07 +0200
25180
+ Processing by DummyController#crash as HTML
25181
+
25182
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25183
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25184
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25185
+ lib/airbrake/rack/middleware.rb:55:in `call'
25186
+
25187
+
25188
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:09 +0200
25189
+ Processing by DummyController#crash as HTML
25190
+
25191
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25192
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25193
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25194
+ lib/airbrake/rack/middleware.rb:55:in `call'
25195
+
25196
+
25197
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:11 +0200
25198
+ Processing by DummyController#crash as HTML
25199
+
25200
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25201
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25202
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25203
+ lib/airbrake/rack/middleware.rb:55:in `call'
25204
+
25205
+
25206
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:13 +0200
25207
+ Processing by DummyController#crash as HTML
25208
+
25209
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25210
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25211
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25212
+ lib/airbrake/rack/middleware.rb:55:in `call'
25213
+
25214
+
25215
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:15 +0200
25216
+ Processing by DummyController#crash as HTML
25217
+
25218
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25219
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25220
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25221
+ lib/airbrake/rack/middleware.rb:55:in `call'
25222
+
25223
+
25224
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:17 +0200
25225
+ Processing by DummyController#crash as HTML
25226
+
25227
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25228
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25229
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25230
+ lib/airbrake/rack/middleware.rb:55:in `call'
25231
+
25232
+
25233
+ Started GET "/" for 127.0.0.1 at 2019-02-18 21:37:20 +0200
25234
+ Processing by DummyController#index as HTML
25235
+
25236
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25237
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25238
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25239
+ lib/airbrake/rack/middleware.rb:55:in `call'
25240
+
25241
+
25242
+ Started GET "/active_record_after_commit" for 127.0.0.1 at 2019-02-18 21:37:20 +0200
25243
+ Processing by DummyController#active_record_after_commit as HTML
25244
+
25245
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25246
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25247
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25248
+ lib/airbrake/rack/middleware.rb:55:in `call'
25249
+
25250
+
25251
+ Started GET "/active_record_after_rollback" for 127.0.0.1 at 2019-02-18 21:37:23 +0200
25252
+ Processing by DummyController#active_record_after_rollback as HTML
25253
+
25254
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25255
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25256
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25257
+ lib/airbrake/rack/middleware.rb:55:in `call'
25258
+
25259
+
25260
+ Started GET "/crash" for 127.0.0.1 at 2019-02-18 21:37:26 +0200
25261
+ Processing by DummyController#crash as HTML
25262
+
25263
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25264
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25265
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25266
+ lib/airbrake/rack/middleware.rb:55:in `call'
25267
+
25268
+
25269
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:28 +0200
25270
+ Processing by DummyController#crash as HTML
25271
+ Parameters: {"foo"=>"bar"}
25272
+
25273
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25274
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25275
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25276
+ lib/airbrake/rack/middleware.rb:55:in `call'
25277
+
25278
+
25279
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:30 +0200
25280
+ Processing by DummyController#crash as HTML
25281
+ Parameters: {"foo"=>"bar"}
25282
+
25283
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25284
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25285
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25286
+ lib/airbrake/rack/middleware.rb:55:in `call'
25287
+
25288
+
25289
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:32 +0200
25290
+ Processing by DummyController#crash as HTML
25291
+ Parameters: {"foo"=>"bar"}
25292
+
25293
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25294
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25295
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25296
+ lib/airbrake/rack/middleware.rb:55:in `call'
25297
+
25298
+
25299
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:34 +0200
25300
+ Processing by DummyController#crash as HTML
25301
+ Parameters: {"foo"=>"bar"}
25302
+
25303
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25304
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25305
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25306
+ lib/airbrake/rack/middleware.rb:55:in `call'
25307
+
25308
+
25309
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:36 +0200
25310
+ Processing by DummyController#crash as HTML
25311
+ Parameters: {"foo"=>"bar"}
25312
+
25313
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25314
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25315
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25316
+ lib/airbrake/rack/middleware.rb:55:in `call'
25317
+
25318
+
25319
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:38 +0200
25320
+ Processing by DummyController#crash as HTML
25321
+ Parameters: {"foo"=>"bar"}
25322
+
25323
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25324
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25325
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25326
+ lib/airbrake/rack/middleware.rb:55:in `call'
25327
+
25328
+
25329
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:40 +0200
25330
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25331
+ Parameters: {"foo"=>"bar"}
25332
+
25333
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25334
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25335
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25336
+ lib/airbrake/rack/middleware.rb:55:in `call'
25337
+
25338
+
25339
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:42 +0200
25340
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25341
+ Parameters: {"foo"=>"bar"}
25342
+
25343
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25344
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25345
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25346
+ lib/airbrake/rack/middleware.rb:55:in `call'
25347
+
25348
+
25349
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-18 21:37:44 +0200
25350
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25351
+ Parameters: {"foo"=>"bar"}
25352
+
25353
+ NoMethodError (undefined method `[]=' for nil:NilClass):
25354
+ lib/airbrake/rails/action_controller_route_subscriber.rb:21:in `call'
25355
+ lib/airbrake/rack/middleware.rb:68:in `call!'
25356
+ lib/airbrake/rack/middleware.rb:55:in `call'
25357
+
25358
+
25359
+ Connecting to database specified by DATABASE_URL
25360
+  (4.7ms) select sqlite_version(*)
25361
+ NameError: uninitialized constant Airbrake::Rails::ActiveRecordSubscriber::RequestStore: select sqlite_version(*)
25362
+ Connecting to database specified by DATABASE_URL
25363
+  (1.1ms) select sqlite_version(*)
25364
+ NameError: uninitialized constant Airbrake::Rails::ActiveRecordSubscriber::RequestStore: select sqlite_version(*)
25365
+ Connecting to database specified by DATABASE_URL
25366
+  (0.8ms) select sqlite_version(*)
25367
+  (3.5ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25368
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25369
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25370
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:18:38 +0200
25371
+ Processing by DummyController#delayed_job as HTML
25372
+
25373
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25374
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25375
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25376
+ lib/airbrake/rack/middleware.rb:55:in `call'
25377
+
25378
+
25379
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:18:43 +0200
25380
+ Processing by DummyController#delayed_job as HTML
25381
+
25382
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25383
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25384
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25385
+ lib/airbrake/rack/middleware.rb:55:in `call'
25386
+
25387
+
25388
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:18:45 +0200
25389
+ Processing by DummyController#crash as HTML
25390
+
25391
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25392
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25393
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25394
+ lib/airbrake/rack/middleware.rb:55:in `call'
25395
+
25396
+
25397
+ Started GET "/active_record_after_commit" for 127.0.0.1 at 2019-02-19 11:18:47 +0200
25398
+ Processing by DummyController#active_record_after_commit as HTML
25399
+
25400
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25401
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25402
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25403
+ lib/airbrake/rack/middleware.rb:55:in `call'
25404
+
25405
+
25406
+ Started GET "/active_record_after_rollback" for 127.0.0.1 at 2019-02-19 11:18:50 +0200
25407
+ Processing by DummyController#active_record_after_rollback as HTML
25408
+
25409
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25410
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25411
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25412
+ lib/airbrake/rack/middleware.rb:55:in `call'
25413
+
25414
+
25415
+ Started GET "/" for 127.0.0.1 at 2019-02-19 11:18:53 +0200
25416
+ Processing by DummyController#index as HTML
25417
+
25418
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25419
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25420
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25421
+ lib/airbrake/rack/middleware.rb:55:in `call'
25422
+
25423
+
25424
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:18:53 +0200
25425
+ Processing by DummyController#crash as HTML
25426
+
25427
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25428
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25429
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25430
+ lib/airbrake/rack/middleware.rb:55:in `call'
25431
+
25432
+
25433
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:18:56 +0200
25434
+ Processing by DummyController#crash as HTML
25435
+
25436
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25437
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25438
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25439
+ lib/airbrake/rack/middleware.rb:55:in `call'
25440
+
25441
+
25442
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:18:58 +0200
25443
+ Processing by DummyController#crash as HTML
25444
+
25445
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25446
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25447
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25448
+ lib/airbrake/rack/middleware.rb:55:in `call'
25449
+
25450
+
25451
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:00 +0200
25452
+ Processing by DummyController#crash as HTML
25453
+
25454
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25455
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25456
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25457
+ lib/airbrake/rack/middleware.rb:55:in `call'
25458
+
25459
+
25460
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:02 +0200
25461
+ Processing by DummyController#crash as HTML
25462
+
25463
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25464
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25465
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25466
+ lib/airbrake/rack/middleware.rb:55:in `call'
25467
+
25468
+
25469
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:04 +0200
25470
+ Processing by DummyController#crash as HTML
25471
+
25472
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25473
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25474
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25475
+ lib/airbrake/rack/middleware.rb:55:in `call'
25476
+
25477
+
25478
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:06 +0200
25479
+ Processing by DummyController#crash as HTML
25480
+
25481
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25482
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25483
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25484
+ lib/airbrake/rack/middleware.rb:55:in `call'
25485
+
25486
+
25487
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:08 +0200
25488
+ Processing by DummyController#crash as HTML
25489
+
25490
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25491
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25492
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25493
+ lib/airbrake/rack/middleware.rb:55:in `call'
25494
+
25495
+
25496
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:10 +0200
25497
+ Processing by DummyController#crash as HTML
25498
+
25499
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25500
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25501
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25502
+ lib/airbrake/rack/middleware.rb:55:in `call'
25503
+
25504
+
25505
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:19:12 +0200
25506
+ Processing by DummyController#resque as HTML
25507
+
25508
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25509
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25510
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25511
+ lib/airbrake/rack/middleware.rb:55:in `call'
25512
+
25513
+
25514
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:19:12 +0200
25515
+ Processing by DummyController#resque as HTML
25516
+
25517
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25518
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25519
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25520
+ lib/airbrake/rack/middleware.rb:55:in `call'
25521
+
25522
+
25523
+ Started HEAD "/crash" for 127.0.0.1 at 2019-02-19 11:19:15 +0200
25524
+ Processing by DummyController#crash as HTML
25525
+
25526
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25527
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25528
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25529
+ lib/airbrake/rack/middleware.rb:55:in `call'
25530
+
25531
+
25532
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:21 +0200
25533
+ Processing by DummyController#crash as HTML
25534
+
25535
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25536
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25537
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25538
+ lib/airbrake/rack/middleware.rb:55:in `call'
25539
+
25540
+
25541
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:19:26 +0200
25542
+ Processing by DummyController#crash as HTML
25543
+
25544
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25545
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25546
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25547
+ lib/airbrake/rack/middleware.rb:55:in `call'
25548
+
25549
+
25550
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:31 +0200
25551
+ Processing by DummyController#notify_airbrake_helper as HTML
25552
+ Parameters: {"foo"=>"bar"}
25553
+
25554
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25555
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25556
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25557
+ lib/airbrake/rack/middleware.rb:55:in `call'
25558
+
25559
+
25560
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:33 +0200
25561
+ Processing by DummyController#notify_airbrake_helper as HTML
25562
+ Parameters: {"foo"=>"bar"}
25563
+
25564
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25565
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25566
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25567
+ lib/airbrake/rack/middleware.rb:55:in `call'
25568
+
25569
+
25570
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:35 +0200
25571
+ Processing by DummyController#notify_airbrake_helper as HTML
25572
+ Parameters: {"foo"=>"bar"}
25573
+
25574
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25575
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25576
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25577
+ lib/airbrake/rack/middleware.rb:55:in `call'
25578
+
25579
+
25580
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:37 +0200
25581
+ Processing by DummyController#notify_airbrake_helper as HTML
25582
+ Parameters: {"foo"=>"bar"}
25583
+
25584
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25585
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25586
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25587
+ lib/airbrake/rack/middleware.rb:55:in `call'
25588
+
25589
+
25590
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:39 +0200
25591
+ Processing by DummyController#notify_airbrake_helper as HTML
25592
+ Parameters: {"foo"=>"bar"}
25593
+
25594
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25595
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25596
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25597
+ lib/airbrake/rack/middleware.rb:55:in `call'
25598
+
25599
+
25600
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:41 +0200
25601
+ Processing by DummyController#notify_airbrake_helper as HTML
25602
+ Parameters: {"foo"=>"bar"}
25603
+
25604
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25605
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25606
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25607
+ lib/airbrake/rack/middleware.rb:55:in `call'
25608
+
25609
+
25610
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:43 +0200
25611
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25612
+ Parameters: {"foo"=>"bar"}
25613
+
25614
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25615
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25616
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25617
+ lib/airbrake/rack/middleware.rb:55:in `call'
25618
+
25619
+
25620
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:45 +0200
25621
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25622
+ Parameters: {"foo"=>"bar"}
25623
+
25624
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25625
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25626
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25627
+ lib/airbrake/rack/middleware.rb:55:in `call'
25628
+
25629
+
25630
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:47 +0200
25631
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25632
+ Parameters: {"foo"=>"bar"}
25633
+
25634
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25635
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25636
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25637
+ lib/airbrake/rack/middleware.rb:55:in `call'
25638
+
25639
+
25640
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:50 +0200
25641
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25642
+ Parameters: {"foo"=>"bar"}
25643
+
25644
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25645
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25646
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25647
+ lib/airbrake/rack/middleware.rb:55:in `call'
25648
+
25649
+
25650
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:52 +0200
25651
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25652
+ Parameters: {"foo"=>"bar"}
25653
+
25654
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25655
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25656
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25657
+ lib/airbrake/rack/middleware.rb:55:in `call'
25658
+
25659
+
25660
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:54 +0200
25661
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
25662
+ Parameters: {"foo"=>"bar"}
25663
+
25664
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25665
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25666
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25667
+ lib/airbrake/rack/middleware.rb:55:in `call'
25668
+
25669
+
25670
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:56 +0200
25671
+ Processing by DummyController#crash as HTML
25672
+ Parameters: {"foo"=>"bar"}
25673
+
25674
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25675
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25676
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25677
+ lib/airbrake/rack/middleware.rb:55:in `call'
25678
+
25679
+
25680
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:19:58 +0200
25681
+ Processing by DummyController#crash as HTML
25682
+ Parameters: {"foo"=>"bar"}
25683
+
25684
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25685
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25686
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25687
+ lib/airbrake/rack/middleware.rb:55:in `call'
25688
+
25689
+
25690
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:20:00 +0200
25691
+ Processing by DummyController#crash as HTML
25692
+ Parameters: {"foo"=>"bar"}
25693
+
25694
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25695
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25696
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25697
+ lib/airbrake/rack/middleware.rb:55:in `call'
25698
+
25699
+
25700
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:20:02 +0200
25701
+ Processing by DummyController#crash as HTML
25702
+ Parameters: {"foo"=>"bar"}
25703
+
25704
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25705
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25706
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25707
+ lib/airbrake/rack/middleware.rb:55:in `call'
25708
+
25709
+
25710
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:20:04 +0200
25711
+ Processing by DummyController#crash as HTML
25712
+ Parameters: {"foo"=>"bar"}
25713
+
25714
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25715
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25716
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25717
+ lib/airbrake/rack/middleware.rb:55:in `call'
25718
+
25719
+
25720
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:20:06 +0200
25721
+ Processing by DummyController#crash as HTML
25722
+ Parameters: {"foo"=>"bar"}
25723
+
25724
+ NameError (uninitialized constant Airbrake::Rails::ActionControllerRouteSubscriber::RequestStore):
25725
+ lib/airbrake/rails/action_controller_route_subscriber.rb:20:in `call'
25726
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25727
+ lib/airbrake/rack/middleware.rb:55:in `call'
25728
+
25729
+
25730
+ Connecting to database specified by DATABASE_URL
25731
+  (0.9ms) select sqlite_version(*)
25732
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25733
+  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25734
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25735
+ Started GET "/" for 127.0.0.1 at 2019-02-19 11:20:55 +0200
25736
+ Processing by DummyController#index as HTML
25737
+ Rendered dummy/index.html.erb within layouts/application (1.2ms)
25738
+ Completed 200 OK in 7.3ms (Views: 7.1ms | ActiveRecord: 0.0ms)
25739
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:20:55 +0200
25740
+ Processing by DummyController#crash as HTML
25741
+  (0.0ms) begin transaction
25742
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25743
+  (0.0ms) commit transaction
25744
+ #<AirbrakeTestError: after_commit>
25745
+ Completed 500 Internal Server Error in 15.3ms
25746
+
25747
+ AirbrakeTestError (AirbrakeTestError):
25748
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25749
+ lib/airbrake/rack/middleware.rb:55:in `call'
25750
+
25751
+
25752
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:20:55 +0200
25753
+ Processing by DummyController#crash as HTML
25754
+  (0.0ms) begin transaction
25755
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25756
+  (0.0ms) commit transaction
25757
+ #<AirbrakeTestError: after_commit>
25758
+ Completed 500 Internal Server Error in 15.5ms
25759
+
25760
+ AirbrakeTestError (AirbrakeTestError):
25761
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25762
+ lib/airbrake/rack/middleware.rb:55:in `call'
25763
+
25764
+
25765
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:20:57 +0200
25766
+ Processing by DummyController#delayed_job as HTML
25767
+ Completed 500 Internal Server Error in 14.8ms
25768
+
25769
+ AirbrakeTestError (delayed_job error):
25770
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
25771
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25772
+ lib/airbrake/rack/middleware.rb:55:in `call'
25773
+
25774
+
25775
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:21:01 +0200
25776
+ Processing by DummyController#delayed_job as HTML
25777
+ Completed 500 Internal Server Error in 0.9ms
25778
+
25779
+ AirbrakeTestError (delayed_job error):
25780
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
25781
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25782
+ lib/airbrake/rack/middleware.rb:55:in `call'
25783
+
25784
+
25785
+ Started GET "/active_record_after_rollback" for 127.0.0.1 at 2019-02-19 11:21:03 +0200
25786
+ Processing by DummyController#active_record_after_rollback as HTML
25787
+  (0.1ms) begin transaction
25788
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
25789
+  (0.0ms) rollback transaction
25790
+ #<AirbrakeTestError: after_rollback>
25791
+ Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.2ms)
25792
+ Completed 200 OK in 22.6ms (Views: 1.0ms | ActiveRecord: 0.1ms)
25793
+ Started GET "/active_record_after_commit" for 127.0.0.1 at 2019-02-19 11:21:03 +0200
25794
+ Processing by DummyController#active_record_after_commit as HTML
25795
+  (0.0ms) begin transaction
25796
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
25797
+  (0.0ms) commit transaction
25798
+ #<AirbrakeTestError: after_commit>
25799
+ Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.2ms)
25800
+ Completed 200 OK in 13.9ms (Views: 1.0ms | ActiveRecord: 0.1ms)
25801
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:04 +0200
25802
+ Processing by DummyController#crash as HTML
25803
+  (0.1ms) begin transaction
25804
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25805
+  (0.0ms) commit transaction
25806
+ #<AirbrakeTestError: after_commit>
25807
+ Completed 500 Internal Server Error in 12.5ms
25808
+
25809
+ AirbrakeTestError (AirbrakeTestError):
25810
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25811
+ lib/airbrake/rack/middleware.rb:55:in `call'
25812
+
25813
+
25814
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:09 +0200
25815
+ Processing by DummyController#crash as HTML
25816
+  (0.0ms) begin transaction
25817
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25818
+  (0.0ms) commit transaction
25819
+ #<AirbrakeTestError: after_commit>
25820
+ Completed 500 Internal Server Error in 16.6ms
25821
+
25822
+ AirbrakeTestError (AirbrakeTestError):
25823
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25824
+ lib/airbrake/rack/middleware.rb:55:in `call'
25825
+
25826
+
25827
+ Started HEAD "/crash" for 127.0.0.1 at 2019-02-19 11:21:14 +0200
25828
+ Processing by DummyController#crash as HTML
25829
+  (0.0ms) begin transaction
25830
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25831
+  (0.0ms) commit transaction
25832
+ #<AirbrakeTestError: after_commit>
25833
+ Completed 0 in 14.2ms
25834
+
25835
+ AirbrakeTestError (AirbrakeTestError):
25836
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25837
+ lib/airbrake/rack/middleware.rb:55:in `call'
25838
+
25839
+
25840
+ Connecting to database specified by DATABASE_URL
25841
+  (1.2ms) select sqlite_version(*)
25842
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
25843
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
25844
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
25845
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:21:41 +0200
25846
+ Processing by DummyController#resque as HTML
25847
+ Rendered dummy/resque.html.erb within layouts/application (0.9ms)
25848
+ Completed 200 OK in 6.5ms (Views: 5.5ms | ActiveRecord: 0.0ms)
25849
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:21:41 +0200
25850
+ Processing by DummyController#resque as HTML
25851
+ Rendered dummy/resque.html.erb within layouts/application (0.2ms)
25852
+ Completed 200 OK in 13.5ms (Views: 1.0ms | ActiveRecord: 0.0ms)
25853
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:41 +0200
25854
+ Processing by DummyController#crash as HTML
25855
+  (0.0ms) begin transaction
25856
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25857
+  (0.0ms) commit transaction
25858
+ #<AirbrakeTestError: after_commit>
25859
+ Completed 500 Internal Server Error in 20.1ms
25860
+
25861
+ AirbrakeTestError (AirbrakeTestError):
25862
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25863
+ lib/airbrake/rack/middleware.rb:55:in `call'
25864
+
25865
+
25866
+ Started GET "/" for 127.0.0.1 at 2019-02-19 11:21:43 +0200
25867
+ Processing by DummyController#index as HTML
25868
+ Rendered dummy/index.html.erb within layouts/application (0.2ms)
25869
+ Completed 200 OK in 1.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
25870
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:43 +0200
25871
+ Processing by DummyController#crash as HTML
25872
+  (0.0ms) begin transaction
25873
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25874
+  (0.0ms) commit transaction
25875
+ #<AirbrakeTestError: after_commit>
25876
+ Completed 500 Internal Server Error in 13.7ms
25877
+
25878
+ AirbrakeTestError (AirbrakeTestError):
25879
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25880
+ lib/airbrake/rack/middleware.rb:55:in `call'
25881
+
25882
+
25883
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:43 +0200
25884
+ Processing by DummyController#crash as HTML
25885
+  (0.0ms) begin transaction
25886
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25887
+  (0.0ms) commit transaction
25888
+ #<AirbrakeTestError: after_commit>
25889
+ Completed 500 Internal Server Error in 12.5ms
25890
+
25891
+ AirbrakeTestError (AirbrakeTestError):
25892
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25893
+ lib/airbrake/rack/middleware.rb:55:in `call'
25894
+
25895
+
25896
+ Started HEAD "/crash" for 127.0.0.1 at 2019-02-19 11:21:48 +0200
25897
+ Processing by DummyController#crash as HTML
25898
+  (0.0ms) begin transaction
25899
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25900
+  (0.0ms) commit transaction
25901
+ #<AirbrakeTestError: after_commit>
25902
+ Completed 0 in 12.8ms
25903
+
25904
+ AirbrakeTestError (AirbrakeTestError):
25905
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25906
+ lib/airbrake/rack/middleware.rb:55:in `call'
25907
+
25908
+
25909
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:53 +0200
25910
+ Processing by DummyController#crash as HTML
25911
+  (0.0ms) begin transaction
25912
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25913
+  (0.0ms) commit transaction
25914
+ #<AirbrakeTestError: after_commit>
25915
+ Completed 500 Internal Server Error in 23.7ms
25916
+
25917
+ AirbrakeTestError (AirbrakeTestError):
25918
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25919
+ lib/airbrake/rack/middleware.rb:55:in `call'
25920
+
25921
+
25922
+ Started GET "/active_record_after_commit" for 127.0.0.1 at 2019-02-19 11:21:58 +0200
25923
+ Processing by DummyController#active_record_after_commit as HTML
25924
+  (0.0ms) begin transaction
25925
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
25926
+  (0.0ms) commit transaction
25927
+ #<AirbrakeTestError: after_commit>
25928
+ Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.2ms)
25929
+ Completed 200 OK in 24.7ms (Views: 1.9ms | ActiveRecord: 0.1ms)
25930
+ Started GET "/active_record_after_rollback" for 127.0.0.1 at 2019-02-19 11:21:58 +0200
25931
+ Processing by DummyController#active_record_after_rollback as HTML
25932
+  (0.0ms) begin transaction
25933
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
25934
+  (0.0ms) rollback transaction
25935
+ #<AirbrakeTestError: after_rollback>
25936
+ Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.2ms)
25937
+ Completed 200 OK in 35.5ms (Views: 1.0ms | ActiveRecord: 0.1ms)
25938
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:21:58 +0200
25939
+ Processing by DummyController#crash as HTML
25940
+  (0.0ms) begin transaction
25941
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25942
+  (0.0ms) commit transaction
25943
+ #<AirbrakeTestError: after_commit>
25944
+ Completed 500 Internal Server Error in 14.8ms
25945
+
25946
+ AirbrakeTestError (AirbrakeTestError):
25947
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25948
+ lib/airbrake/rack/middleware.rb:55:in `call'
25949
+
25950
+
25951
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:00 +0200
25952
+ Processing by DummyController#crash as HTML
25953
+  (0.0ms) begin transaction
25954
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25955
+  (0.0ms) commit transaction
25956
+ #<AirbrakeTestError: after_commit>
25957
+ Completed 500 Internal Server Error in 14.4ms
25958
+
25959
+ AirbrakeTestError (AirbrakeTestError):
25960
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25961
+ lib/airbrake/rack/middleware.rb:55:in `call'
25962
+
25963
+
25964
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:02 +0200
25965
+ Processing by DummyController#crash as HTML
25966
+  (0.0ms) begin transaction
25967
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25968
+  (0.0ms) commit transaction
25969
+ #<AirbrakeTestError: after_commit>
25970
+ Completed 500 Internal Server Error in 13.6ms
25971
+
25972
+ AirbrakeTestError (AirbrakeTestError):
25973
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25974
+ lib/airbrake/rack/middleware.rb:55:in `call'
25975
+
25976
+
25977
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:05 +0200
25978
+ Processing by DummyController#crash as HTML
25979
+  (0.0ms) begin transaction
25980
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25981
+  (0.0ms) commit transaction
25982
+ #<AirbrakeTestError: after_commit>
25983
+ Completed 500 Internal Server Error in 16.6ms
25984
+
25985
+ AirbrakeTestError (AirbrakeTestError):
25986
+ lib/airbrake/rack/middleware.rb:67:in `call!'
25987
+ lib/airbrake/rack/middleware.rb:55:in `call'
25988
+
25989
+
25990
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:07 +0200
25991
+ Processing by DummyController#crash as HTML
25992
+  (0.0ms) begin transaction
25993
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
25994
+  (0.0ms) commit transaction
25995
+ #<AirbrakeTestError: after_commit>
25996
+ Completed 500 Internal Server Error in 16.1ms
25997
+
25998
+ AirbrakeTestError (AirbrakeTestError):
25999
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26000
+ lib/airbrake/rack/middleware.rb:55:in `call'
26001
+
26002
+
26003
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:09 +0200
26004
+ Processing by DummyController#crash as HTML
26005
+  (0.1ms) begin transaction
26006
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26007
+  (0.0ms) commit transaction
26008
+ #<AirbrakeTestError: after_commit>
26009
+ Completed 500 Internal Server Error in 34.0ms
26010
+
26011
+ AirbrakeTestError (AirbrakeTestError):
26012
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26013
+ lib/airbrake/rack/middleware.rb:55:in `call'
26014
+
26015
+
26016
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:11 +0200
26017
+ Processing by DummyController#crash as HTML
26018
+  (0.0ms) begin transaction
26019
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26020
+  (0.0ms) commit transaction
26021
+ #<AirbrakeTestError: after_commit>
26022
+ Completed 500 Internal Server Error in 20.8ms
26023
+
26024
+ AirbrakeTestError (AirbrakeTestError):
26025
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26026
+ lib/airbrake/rack/middleware.rb:55:in `call'
26027
+
26028
+
26029
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:22:13 +0200
26030
+ Processing by DummyController#crash as HTML
26031
+  (0.0ms) begin transaction
26032
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26033
+  (0.0ms) commit transaction
26034
+ #<AirbrakeTestError: after_commit>
26035
+ Completed 500 Internal Server Error in 16.5ms
26036
+
26037
+ AirbrakeTestError (AirbrakeTestError):
26038
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26039
+ lib/airbrake/rack/middleware.rb:55:in `call'
26040
+
26041
+
26042
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:22:15 +0200
26043
+ Processing by DummyController#delayed_job as HTML
26044
+ Completed 500 Internal Server Error in 13.3ms
26045
+
26046
+ AirbrakeTestError (delayed_job error):
26047
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
26048
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26049
+ lib/airbrake/rack/middleware.rb:55:in `call'
26050
+
26051
+
26052
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:22:19 +0200
26053
+ Processing by DummyController#delayed_job as HTML
26054
+ Completed 500 Internal Server Error in 0.7ms
26055
+
26056
+ AirbrakeTestError (delayed_job error):
26057
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
26058
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26059
+ lib/airbrake/rack/middleware.rb:55:in `call'
26060
+
26061
+
26062
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:21 +0200
26063
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26064
+ Parameters: {"foo"=>"bar"}
26065
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26066
+ Completed 200 OK in 15.1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
26067
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:23 +0200
26068
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26069
+ Parameters: {"foo"=>"bar"}
26070
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26071
+ Completed 200 OK in 15.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26072
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:25 +0200
26073
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26074
+ Parameters: {"foo"=>"bar"}
26075
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26076
+ Completed 200 OK in 16.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
26077
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:27 +0200
26078
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26079
+ Parameters: {"foo"=>"bar"}
26080
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.7ms)
26081
+ Completed 200 OK in 19.7ms (Views: 2.0ms | ActiveRecord: 0.0ms)
26082
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:29 +0200
26083
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26084
+ Parameters: {"foo"=>"bar"}
26085
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
26086
+ Completed 200 OK in 30.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
26087
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:31 +0200
26088
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26089
+ Parameters: {"foo"=>"bar"}
26090
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26091
+ Completed 200 OK in 14.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26092
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:33 +0200
26093
+ Processing by DummyController#crash as HTML
26094
+ Parameters: {"foo"=>"bar"}
26095
+  (0.1ms) begin transaction
26096
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26097
+  (0.0ms) commit transaction
26098
+ #<AirbrakeTestError: after_commit>
26099
+ Completed 500 Internal Server Error in 14.7ms
26100
+
26101
+ AirbrakeTestError (AirbrakeTestError):
26102
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26103
+ lib/airbrake/rack/middleware.rb:55:in `call'
26104
+
26105
+
26106
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:35 +0200
26107
+ Processing by DummyController#crash as HTML
26108
+ Parameters: {"foo"=>"bar"}
26109
+  (0.0ms) begin transaction
26110
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26111
+  (0.0ms) commit transaction
26112
+ #<AirbrakeTestError: after_commit>
26113
+ Completed 500 Internal Server Error in 13.6ms
26114
+
26115
+ AirbrakeTestError (AirbrakeTestError):
26116
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26117
+ lib/airbrake/rack/middleware.rb:55:in `call'
26118
+
26119
+
26120
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:37 +0200
26121
+ Processing by DummyController#crash as HTML
26122
+ Parameters: {"foo"=>"bar"}
26123
+  (0.0ms) begin transaction
26124
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26125
+  (0.0ms) commit transaction
26126
+ #<AirbrakeTestError: after_commit>
26127
+ Completed 500 Internal Server Error in 12.0ms
26128
+
26129
+ AirbrakeTestError (AirbrakeTestError):
26130
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26131
+ lib/airbrake/rack/middleware.rb:55:in `call'
26132
+
26133
+
26134
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:39 +0200
26135
+ Processing by DummyController#crash as HTML
26136
+ Parameters: {"foo"=>"bar"}
26137
+  (0.0ms) begin transaction
26138
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26139
+  (0.0ms) commit transaction
26140
+ #<AirbrakeTestError: after_commit>
26141
+ Completed 500 Internal Server Error in 12.5ms
26142
+
26143
+ AirbrakeTestError (AirbrakeTestError):
26144
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26145
+ lib/airbrake/rack/middleware.rb:55:in `call'
26146
+
26147
+
26148
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:41 +0200
26149
+ Processing by DummyController#crash as HTML
26150
+ Parameters: {"foo"=>"bar"}
26151
+  (0.0ms) begin transaction
26152
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26153
+  (0.0ms) commit transaction
26154
+ #<AirbrakeTestError: after_commit>
26155
+ Completed 500 Internal Server Error in 5.6ms
26156
+
26157
+ AirbrakeTestError (AirbrakeTestError):
26158
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26159
+ lib/airbrake/rack/middleware.rb:55:in `call'
26160
+
26161
+
26162
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:43 +0200
26163
+ Processing by DummyController#crash as HTML
26164
+ Parameters: {"foo"=>"bar"}
26165
+  (0.0ms) begin transaction
26166
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26167
+  (0.0ms) commit transaction
26168
+ #<AirbrakeTestError: after_commit>
26169
+ Completed 500 Internal Server Error in 12.8ms
26170
+
26171
+ AirbrakeTestError (AirbrakeTestError):
26172
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26173
+ lib/airbrake/rack/middleware.rb:55:in `call'
26174
+
26175
+
26176
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:45 +0200
26177
+ Processing by DummyController#notify_airbrake_helper as HTML
26178
+ Parameters: {"foo"=>"bar"}
26179
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26180
+ Completed 200 OK in 12.8ms (Views: 8.3ms | ActiveRecord: 0.0ms)
26181
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:47 +0200
26182
+ Processing by DummyController#notify_airbrake_helper as HTML
26183
+ Parameters: {"foo"=>"bar"}
26184
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
26185
+ Completed 200 OK in 14.4ms (Views: 9.2ms | ActiveRecord: 0.0ms)
26186
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:49 +0200
26187
+ Processing by DummyController#notify_airbrake_helper as HTML
26188
+ Parameters: {"foo"=>"bar"}
26189
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26190
+ Completed 200 OK in 5.4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
26191
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:51 +0200
26192
+ Processing by DummyController#notify_airbrake_helper as HTML
26193
+ Parameters: {"foo"=>"bar"}
26194
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26195
+ Completed 200 OK in 14.2ms (Views: 9.2ms | ActiveRecord: 0.0ms)
26196
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:53 +0200
26197
+ Processing by DummyController#notify_airbrake_helper as HTML
26198
+ Parameters: {"foo"=>"bar"}
26199
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26200
+ Completed 200 OK in 11.9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
26201
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:22:55 +0200
26202
+ Processing by DummyController#notify_airbrake_helper as HTML
26203
+ Parameters: {"foo"=>"bar"}
26204
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26205
+ Completed 200 OK in 12.6ms (Views: 7.9ms | ActiveRecord: 0.0ms)
26206
+ Connecting to database specified by DATABASE_URL
26207
+  (0.9ms) select sqlite_version(*)
26208
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26209
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26210
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26211
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:23:39 +0200
26212
+ Processing by DummyController#crash as HTML
26213
+  (0.0ms) begin transaction
26214
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26215
+  (0.0ms) commit transaction
26216
+ #<AirbrakeTestError: after_commit>
26217
+ Completed 500 Internal Server Error in 17.7ms
26218
+
26219
+ AirbrakeTestError (AirbrakeTestError):
26220
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26221
+ lib/airbrake/rack/middleware.rb:55:in `call'
26222
+
26223
+
26224
+ Connecting to database specified by DATABASE_URL
26225
+  (2.8ms) select sqlite_version(*)
26226
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26227
+  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26228
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26229
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:42:57 +0200
26230
+ Processing by DummyController#crash as HTML
26231
+  (0.0ms) begin transaction
26232
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26233
+  (0.0ms) commit transaction
26234
+ #<AirbrakeTestError: after_commit>
26235
+ Completed 500 Internal Server Error in 17.2ms
26236
+
26237
+ AirbrakeTestError (AirbrakeTestError):
26238
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26239
+ lib/airbrake/rack/middleware.rb:55:in `call'
26240
+
26241
+
26242
+ Connecting to database specified by DATABASE_URL
26243
+  (0.8ms) select sqlite_version(*)
26244
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26245
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26246
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26247
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:43:20 +0200
26248
+ Processing by DummyController#crash as HTML
26249
+  (0.0ms) begin transaction
26250
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26251
+  (0.0ms) commit transaction
26252
+ #<AirbrakeTestError: after_commit>
26253
+ Completed 500 Internal Server Error in 18.9ms
26254
+
26255
+ AirbrakeTestError (AirbrakeTestError):
26256
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26257
+ lib/airbrake/rack/middleware.rb:55:in `call'
26258
+
26259
+
26260
+ Connecting to database specified by DATABASE_URL
26261
+  (0.9ms) select sqlite_version(*)
26262
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26263
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26264
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26265
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:09 +0200
26266
+ Processing by DummyController#crash as HTML
26267
+  (0.0ms) begin transaction
26268
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26269
+  (0.0ms) commit transaction
26270
+ #<AirbrakeTestError: after_commit>
26271
+ Completed 500 Internal Server Error in 20.2ms
26272
+
26273
+ AirbrakeTestError (AirbrakeTestError):
26274
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26275
+ lib/airbrake/rack/middleware.rb:55:in `call'
26276
+
26277
+
26278
+ Connecting to database specified by DATABASE_URL
26279
+  (0.9ms) select sqlite_version(*)
26280
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26281
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26282
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26283
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:21 +0200
26284
+ Processing by DummyController#crash as HTML
26285
+  (0.1ms) begin transaction
26286
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26287
+  (0.0ms) commit transaction
26288
+ #<AirbrakeTestError: after_commit>
26289
+ Completed 500 Internal Server Error in 27.8ms
26290
+
26291
+ AirbrakeTestError (AirbrakeTestError):
26292
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26293
+ lib/airbrake/rack/middleware.rb:55:in `call'
26294
+
26295
+
26296
+ Connecting to database specified by DATABASE_URL
26297
+  (1.0ms) select sqlite_version(*)
26298
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
26299
+  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
26300
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
26301
+ Started GET "/" for 127.0.0.1 at 2019-02-19 11:44:55 +0200
26302
+ Processing by DummyController#index as HTML
26303
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
26304
+ Completed 200 OK in 7.8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
26305
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:55 +0200
26306
+ Processing by DummyController#crash as HTML
26307
+  (0.0ms) begin transaction
26308
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26309
+  (0.0ms) commit transaction
26310
+ #<AirbrakeTestError: after_commit>
26311
+ Completed 500 Internal Server Error in 14.1ms
26312
+
26313
+ AirbrakeTestError (AirbrakeTestError):
26314
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26315
+ lib/airbrake/rack/middleware.rb:55:in `call'
26316
+
26317
+
26318
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:55 +0200
26319
+ Processing by DummyController#crash as HTML
26320
+  (0.0ms) begin transaction
26321
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26322
+  (0.0ms) commit transaction
26323
+ #<AirbrakeTestError: after_commit>
26324
+ Completed 500 Internal Server Error in 15.8ms
26325
+
26326
+ AirbrakeTestError (AirbrakeTestError):
26327
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26328
+ lib/airbrake/rack/middleware.rb:55:in `call'
26329
+
26330
+
26331
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:57 +0200
26332
+ Processing by DummyController#crash as HTML
26333
+  (0.0ms) begin transaction
26334
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26335
+  (0.0ms) commit transaction
26336
+ #<AirbrakeTestError: after_commit>
26337
+ Completed 500 Internal Server Error in 13.6ms
26338
+
26339
+ AirbrakeTestError (AirbrakeTestError):
26340
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26341
+ lib/airbrake/rack/middleware.rb:55:in `call'
26342
+
26343
+
26344
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:44:59 +0200
26345
+ Processing by DummyController#crash as HTML
26346
+  (0.0ms) begin transaction
26347
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26348
+  (0.0ms) commit transaction
26349
+ #<AirbrakeTestError: after_commit>
26350
+ Completed 500 Internal Server Error in 14.0ms
26351
+
26352
+ AirbrakeTestError (AirbrakeTestError):
26353
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26354
+ lib/airbrake/rack/middleware.rb:55:in `call'
26355
+
26356
+
26357
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:01 +0200
26358
+ Processing by DummyController#crash as HTML
26359
+  (0.0ms) begin transaction
26360
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26361
+  (0.0ms) commit transaction
26362
+ #<AirbrakeTestError: after_commit>
26363
+ Completed 500 Internal Server Error in 13.9ms
26364
+
26365
+ AirbrakeTestError (AirbrakeTestError):
26366
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26367
+ lib/airbrake/rack/middleware.rb:55:in `call'
26368
+
26369
+
26370
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:03 +0200
26371
+ Processing by DummyController#crash as HTML
26372
+  (0.0ms) begin transaction
26373
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26374
+  (0.0ms) commit transaction
26375
+ #<AirbrakeTestError: after_commit>
26376
+ Completed 500 Internal Server Error in 13.5ms
26377
+
26378
+ AirbrakeTestError (AirbrakeTestError):
26379
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26380
+ lib/airbrake/rack/middleware.rb:55:in `call'
26381
+
26382
+
26383
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:05 +0200
26384
+ Processing by DummyController#crash as HTML
26385
+  (0.0ms) begin transaction
26386
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26387
+  (0.0ms) commit transaction
26388
+ #<AirbrakeTestError: after_commit>
26389
+ Completed 500 Internal Server Error in 13.9ms
26390
+
26391
+ AirbrakeTestError (AirbrakeTestError):
26392
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26393
+ lib/airbrake/rack/middleware.rb:55:in `call'
26394
+
26395
+
26396
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:07 +0200
26397
+ Processing by DummyController#crash as HTML
26398
+  (0.0ms) begin transaction
26399
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26400
+  (0.0ms) commit transaction
26401
+ #<AirbrakeTestError: after_commit>
26402
+ Completed 500 Internal Server Error in 16.5ms
26403
+
26404
+ AirbrakeTestError (AirbrakeTestError):
26405
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26406
+ lib/airbrake/rack/middleware.rb:55:in `call'
26407
+
26408
+
26409
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:09 +0200
26410
+ Processing by DummyController#crash as HTML
26411
+  (0.0ms) begin transaction
26412
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26413
+  (0.0ms) commit transaction
26414
+ #<AirbrakeTestError: after_commit>
26415
+ Completed 500 Internal Server Error in 13.5ms
26416
+
26417
+ AirbrakeTestError (AirbrakeTestError):
26418
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26419
+ lib/airbrake/rack/middleware.rb:55:in `call'
26420
+
26421
+
26422
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:11 +0200
26423
+ Processing by DummyController#crash as HTML
26424
+  (0.0ms) begin transaction
26425
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26426
+  (0.0ms) commit transaction
26427
+ #<AirbrakeTestError: after_commit>
26428
+ Completed 500 Internal Server Error in 13.0ms
26429
+
26430
+ AirbrakeTestError (AirbrakeTestError):
26431
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26432
+ lib/airbrake/rack/middleware.rb:55:in `call'
26433
+
26434
+
26435
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:13 +0200
26436
+ Processing by DummyController#notify_airbrake_helper as HTML
26437
+ Parameters: {"foo"=>"bar"}
26438
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26439
+ Completed 200 OK in 13.2ms (Views: 8.7ms | ActiveRecord: 0.0ms)
26440
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:15 +0200
26441
+ Processing by DummyController#notify_airbrake_helper as HTML
26442
+ Parameters: {"foo"=>"bar"}
26443
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26444
+ Completed 200 OK in 14.6ms (Views: 9.4ms | ActiveRecord: 0.0ms)
26445
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:17 +0200
26446
+ Processing by DummyController#notify_airbrake_helper as HTML
26447
+ Parameters: {"foo"=>"bar"}
26448
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26449
+ Completed 200 OK in 14.3ms (Views: 8.7ms | ActiveRecord: 0.0ms)
26450
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:19 +0200
26451
+ Processing by DummyController#notify_airbrake_helper as HTML
26452
+ Parameters: {"foo"=>"bar"}
26453
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26454
+ Completed 200 OK in 12.1ms (Views: 8.0ms | ActiveRecord: 0.0ms)
26455
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:21 +0200
26456
+ Processing by DummyController#notify_airbrake_helper as HTML
26457
+ Parameters: {"foo"=>"bar"}
26458
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
26459
+ Completed 200 OK in 12.2ms (Views: 7.4ms | ActiveRecord: 0.0ms)
26460
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:23 +0200
26461
+ Processing by DummyController#notify_airbrake_helper as HTML
26462
+ Parameters: {"foo"=>"bar"}
26463
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
26464
+ Completed 200 OK in 13.1ms (Views: 7.9ms | ActiveRecord: 0.0ms)
26465
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:25 +0200
26466
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26467
+ Parameters: {"foo"=>"bar"}
26468
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26469
+ Completed 200 OK in 13.3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
26470
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:27 +0200
26471
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26472
+ Parameters: {"foo"=>"bar"}
26473
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26474
+ Completed 200 OK in 14.6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26475
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:29 +0200
26476
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26477
+ Parameters: {"foo"=>"bar"}
26478
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26479
+ Completed 200 OK in 11.7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26480
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:31 +0200
26481
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26482
+ Parameters: {"foo"=>"bar"}
26483
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26484
+ Completed 200 OK in 12.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26485
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:33 +0200
26486
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26487
+ Parameters: {"foo"=>"bar"}
26488
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26489
+ Completed 200 OK in 12.5ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26490
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:35 +0200
26491
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
26492
+ Parameters: {"foo"=>"bar"}
26493
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
26494
+ Completed 200 OK in 12.9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
26495
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:37 +0200
26496
+ Processing by DummyController#crash as HTML
26497
+ Parameters: {"foo"=>"bar"}
26498
+  (0.1ms) begin transaction
26499
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26500
+  (0.0ms) commit transaction
26501
+ #<AirbrakeTestError: after_commit>
26502
+ Completed 500 Internal Server Error in 17.5ms
26503
+
26504
+ AirbrakeTestError (AirbrakeTestError):
26505
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26506
+ lib/airbrake/rack/middleware.rb:55:in `call'
26507
+
26508
+
26509
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:39 +0200
26510
+ Processing by DummyController#crash as HTML
26511
+ Parameters: {"foo"=>"bar"}
26512
+  (0.0ms) begin transaction
26513
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26514
+  (0.0ms) commit transaction
26515
+ #<AirbrakeTestError: after_commit>
26516
+ Completed 500 Internal Server Error in 13.0ms
26517
+
26518
+ AirbrakeTestError (AirbrakeTestError):
26519
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26520
+ lib/airbrake/rack/middleware.rb:55:in `call'
26521
+
26522
+
26523
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:41 +0200
26524
+ Processing by DummyController#crash as HTML
26525
+ Parameters: {"foo"=>"bar"}
26526
+  (0.0ms) begin transaction
26527
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26528
+  (0.0ms) commit transaction
26529
+ #<AirbrakeTestError: after_commit>
26530
+ Completed 500 Internal Server Error in 13.7ms
26531
+
26532
+ AirbrakeTestError (AirbrakeTestError):
26533
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26534
+ lib/airbrake/rack/middleware.rb:55:in `call'
26535
+
26536
+
26537
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:43 +0200
26538
+ Processing by DummyController#crash as HTML
26539
+ Parameters: {"foo"=>"bar"}
26540
+  (0.1ms) begin transaction
26541
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26542
+  (0.0ms) commit transaction
26543
+ #<AirbrakeTestError: after_commit>
26544
+ Completed 500 Internal Server Error in 15.7ms
26545
+
26546
+ AirbrakeTestError (AirbrakeTestError):
26547
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26548
+ lib/airbrake/rack/middleware.rb:55:in `call'
26549
+
26550
+
26551
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:45 +0200
26552
+ Processing by DummyController#crash as HTML
26553
+ Parameters: {"foo"=>"bar"}
26554
+  (0.0ms) begin transaction
26555
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26556
+  (0.1ms) commit transaction
26557
+ #<AirbrakeTestError: after_commit>
26558
+ Completed 500 Internal Server Error in 13.4ms
26559
+
26560
+ AirbrakeTestError (AirbrakeTestError):
26561
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26562
+ lib/airbrake/rack/middleware.rb:55:in `call'
26563
+
26564
+
26565
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-02-19 11:45:47 +0200
26566
+ Processing by DummyController#crash as HTML
26567
+ Parameters: {"foo"=>"bar"}
26568
+  (0.0ms) begin transaction
26569
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26570
+  (0.0ms) commit transaction
26571
+ #<AirbrakeTestError: after_commit>
26572
+ Completed 500 Internal Server Error in 13.4ms
26573
+
26574
+ AirbrakeTestError (AirbrakeTestError):
26575
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26576
+ lib/airbrake/rack/middleware.rb:55:in `call'
26577
+
26578
+
26579
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:45:50 +0200
26580
+ Processing by DummyController#resque as HTML
26581
+ Rendered dummy/resque.html.erb within layouts/application (0.2ms)
26582
+ Completed 200 OK in 16.8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
26583
+ Started GET "/resque" for 127.0.0.1 at 2019-02-19 11:45:50 +0200
26584
+ Processing by DummyController#resque as HTML
26585
+ Rendered dummy/resque.html.erb within layouts/application (0.2ms)
26586
+ Completed 200 OK in 1.6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
26587
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:50 +0200
26588
+ Processing by DummyController#crash as HTML
26589
+  (0.0ms) begin transaction
26590
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26591
+  (0.0ms) commit transaction
26592
+ #<AirbrakeTestError: after_commit>
26593
+ Completed 500 Internal Server Error in 12.6ms
26594
+
26595
+ AirbrakeTestError (AirbrakeTestError):
26596
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26597
+ lib/airbrake/rack/middleware.rb:55:in `call'
26598
+
26599
+
26600
+ Started HEAD "/crash" for 127.0.0.1 at 2019-02-19 11:45:52 +0200
26601
+ Processing by DummyController#crash as HTML
26602
+  (0.0ms) begin transaction
26603
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26604
+  (0.0ms) commit transaction
26605
+ #<AirbrakeTestError: after_commit>
26606
+ Completed 0 in 5.9ms
26607
+
26608
+ AirbrakeTestError (AirbrakeTestError):
26609
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26610
+ lib/airbrake/rack/middleware.rb:55:in `call'
26611
+
26612
+
26613
+ Started GET "/crash" for 127.0.0.1 at 2019-02-19 11:45:54 +0200
26614
+ Processing by DummyController#crash as HTML
26615
+  (0.0ms) begin transaction
26616
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
26617
+  (0.0ms) commit transaction
26618
+ #<AirbrakeTestError: after_commit>
26619
+ Completed 500 Internal Server Error in 13.7ms
26620
+
26621
+ AirbrakeTestError (AirbrakeTestError):
26622
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26623
+ lib/airbrake/rack/middleware.rb:55:in `call'
26624
+
26625
+
26626
+ Started GET "/active_record_after_commit" for 127.0.0.1 at 2019-02-19 11:45:56 +0200
26627
+ Processing by DummyController#active_record_after_commit as HTML
26628
+  (0.0ms) begin transaction
26629
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
26630
+  (0.0ms) commit transaction
26631
+ #<AirbrakeTestError: after_commit>
26632
+ Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.2ms)
26633
+ Completed 200 OK in 6.0ms (Views: 0.9ms | ActiveRecord: 0.1ms)
26634
+ Started GET "/active_record_after_rollback" for 127.0.0.1 at 2019-02-19 11:45:56 +0200
26635
+ Processing by DummyController#active_record_after_rollback as HTML
26636
+  (0.0ms) begin transaction
26637
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
26638
+  (0.0ms) rollback transaction
26639
+ #<AirbrakeTestError: after_rollback>
26640
+ Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.3ms)
26641
+ Completed 200 OK in 23.2ms (Views: 1.2ms | ActiveRecord: 0.1ms)
26642
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:45:56 +0200
26643
+ Processing by DummyController#delayed_job as HTML
26644
+ Completed 500 Internal Server Error in 14.3ms
26645
+
26646
+ AirbrakeTestError (delayed_job error):
26647
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
26648
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26649
+ lib/airbrake/rack/middleware.rb:55:in `call'
26650
+
26651
+
26652
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-02-19 11:46:00 +0200
26653
+ Processing by DummyController#delayed_job as HTML
26654
+ Completed 500 Internal Server Error in 0.7ms
26655
+
26656
+ AirbrakeTestError (delayed_job error):
26657
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
26658
+ lib/airbrake/rack/middleware.rb:67:in `call!'
26659
+ lib/airbrake/rack/middleware.rb:55:in `call'
26660
+
26661
+