airbrake 6.0.0 → 6.1.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/airbrake.rb +8 -14
- data/lib/airbrake/delayed_job.rb +49 -0
- data/lib/airbrake/delayed_job/plugin.rb +4 -50
- data/lib/airbrake/logger.rb +102 -0
- data/lib/airbrake/logger/airbrake_logger.rb +4 -105
- data/lib/airbrake/rack.rb +7 -0
- data/lib/airbrake/rack/context_filter.rb +5 -0
- data/lib/airbrake/rack/http_headers_filter.rb +9 -1
- data/lib/airbrake/rack/http_params_filter.rb +9 -1
- data/lib/airbrake/rack/request_body_filter.rb +5 -0
- data/lib/airbrake/rack/session_filter.rb +8 -0
- data/lib/airbrake/rails.rb +79 -0
- data/lib/airbrake/rails/active_record.rb +1 -1
- data/lib/airbrake/rails/railtie.rb +4 -78
- data/lib/airbrake/rake.rb +64 -0
- data/lib/airbrake/rake/task_ext.rb +4 -65
- data/lib/airbrake/rake/tasks.rb +12 -1
- data/lib/airbrake/resque.rb +17 -0
- data/lib/airbrake/resque/failure.rb +4 -17
- data/lib/airbrake/shoryuken.rb +41 -0
- data/lib/airbrake/shoryuken/error_handler.rb +4 -43
- data/lib/airbrake/sidekiq.rb +37 -0
- data/lib/airbrake/sidekiq/error_handler.rb +4 -37
- data/lib/airbrake/version.rb +1 -1
- data/spec/apps/rack/dummy_app.rb +1 -1
- data/spec/apps/rails/dummy_app.rb +30 -1
- data/spec/apps/rails/logs/40.log +4 -895
- data/spec/apps/rails/logs/42.log +19 -5438
- data/spec/apps/rails/logs/50.log +6611 -10
- data/spec/apps/rails/logs/51.log +743 -0
- data/spec/apps/rails/logs/52.log +249 -0
- data/spec/integration/rails/rails_spec.rb +16 -12
- data/spec/integration/shared_examples/rack_examples.rb +14 -20
- data/spec/spec_helper.rb +3 -3
- data/spec/unit/{logger/airbrake_logger_spec.rb → logger_spec.rb} +0 -0
- data/spec/unit/rack/context_filter_spec.rb +2 -2
- data/spec/unit/rack/http_headers_filter_spec.rb +7 -7
- data/spec/unit/rack/http_params_filter_spec.rb +8 -2
- data/spec/unit/rake/tasks_spec.rb +5 -5
- data/spec/unit/{shoryuken/error_handler_spec.rb → shoryuken_spec.rb} +12 -7
- data/spec/unit/{sidekiq/error_handler_spec.rb → sidekiq_spec.rb} +12 -8
- metadata +32 -18
- data/spec/apps/rails/logs/32.log +0 -852
- data/spec/apps/rails/logs/41.log +0 -453
@@ -28,11 +28,11 @@ RSpec.describe "airbrake/rake/tasks" do
|
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
31
|
-
[%w
|
32
|
-
%w
|
33
|
-
%w
|
34
|
-
%w
|
35
|
-
%w
|
31
|
+
[%w[environment production],
|
32
|
+
%w[username john],
|
33
|
+
%w[revision 123abcdef],
|
34
|
+
%w[repository https://github.com/airbrake/airbrake'],
|
35
|
+
%w[version v2.0]].each do |(key, val)|
|
36
36
|
include_examples 'deploy payload', key, val
|
37
37
|
end
|
38
38
|
end
|
@@ -1,10 +1,11 @@
|
|
1
1
|
require 'spec_helper'
|
2
|
-
require 'airbrake/shoryuken
|
2
|
+
require 'airbrake/shoryuken'
|
3
3
|
|
4
4
|
RSpec.describe Airbrake::Shoryuken::ErrorHandler do
|
5
5
|
let(:error) { AirbrakeTestError.new('shoryuken error') }
|
6
6
|
let(:body) { { message: 'message' } }
|
7
7
|
let(:queue) { 'foo_queue' }
|
8
|
+
|
8
9
|
let(:worker) do
|
9
10
|
Class.new do
|
10
11
|
def self.to_s
|
@@ -12,6 +13,7 @@ RSpec.describe Airbrake::Shoryuken::ErrorHandler do
|
|
12
13
|
end
|
13
14
|
end.new
|
14
15
|
end
|
16
|
+
|
15
17
|
let(:endpoint) do
|
16
18
|
'https://airbrake.io/api/v3/projects/113743/notices?key=fd04e13d806a90f96614ad8e529b2822'
|
17
19
|
end
|
@@ -55,16 +57,19 @@ RSpec.describe Airbrake::Shoryuken::ErrorHandler do
|
|
55
57
|
end
|
56
58
|
|
57
59
|
context 'when Airbrake is not configured' do
|
58
|
-
|
59
|
-
|
60
|
-
|
60
|
+
before do
|
61
|
+
@notifiers = Airbrake.instance_variable_get(:@notifiers)
|
62
|
+
@default_notifier = @notifiers.delete(:default)
|
63
|
+
end
|
61
64
|
|
65
|
+
after do
|
66
|
+
@notifiers[:default] = @default_notifier
|
67
|
+
end
|
68
|
+
|
69
|
+
it "raises error" do
|
62
70
|
expect do
|
63
71
|
subject.call(worker, queue, nil, body) { raise error }
|
64
72
|
end.to raise_error(error)
|
65
|
-
|
66
|
-
expect(Airbrake).to have_received(:build_notice)
|
67
|
-
expect(Airbrake).not_to have_received(:notify)
|
68
73
|
end
|
69
74
|
end
|
70
75
|
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.
|
3
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2')
|
4
4
|
require 'sidekiq'
|
5
5
|
require 'sidekiq/cli'
|
6
|
-
require 'airbrake/sidekiq
|
6
|
+
require 'airbrake/sidekiq'
|
7
7
|
|
8
8
|
RSpec.describe "airbrake/sidekiq/error_handler" do
|
9
9
|
let(:endpoint) do
|
@@ -18,7 +18,7 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
|
|
18
18
|
handler = Sidekiq.error_handlers.last
|
19
19
|
handler.call(
|
20
20
|
AirbrakeTestError.new('sidekiq error'),
|
21
|
-
'class' => 'HardSidekiqWorker', 'args' => %w
|
21
|
+
'class' => 'HardSidekiqWorker', 'args' => %w[bango bongo]
|
22
22
|
)
|
23
23
|
end
|
24
24
|
|
@@ -35,13 +35,17 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
|
|
35
35
|
end
|
36
36
|
|
37
37
|
context "when Airbrake is not configured" do
|
38
|
-
|
39
|
-
|
40
|
-
|
38
|
+
before do
|
39
|
+
@notifiers = Airbrake.instance_variable_get(:@notifiers)
|
40
|
+
@default_notifier = @notifiers.delete(:default)
|
41
|
+
end
|
41
42
|
|
43
|
+
after do
|
44
|
+
@notifiers[:default] = @default_notifier
|
45
|
+
end
|
46
|
+
|
47
|
+
it "returns nil" do
|
42
48
|
expect(call_handler).to be_nil
|
43
|
-
expect(Airbrake).to have_received(:build_notice)
|
44
|
-
expect(Airbrake).not_to have_received(:notify)
|
45
49
|
end
|
46
50
|
end
|
47
51
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: airbrake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.1.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Airbrake Technologies, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: airbrake-ruby
|
@@ -16,14 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '2.
|
19
|
+
version: '2.2'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.2.2
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '2.
|
29
|
+
version: '2.2'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.2.2
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rspec
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -156,14 +162,14 @@ dependencies:
|
|
156
162
|
requirements:
|
157
163
|
- - "~>"
|
158
164
|
- !ruby/object:Gem::Version
|
159
|
-
version: '
|
165
|
+
version: '5'
|
160
166
|
type: :development
|
161
167
|
prerelease: false
|
162
168
|
version_requirements: !ruby/object:Gem::Requirement
|
163
169
|
requirements:
|
164
170
|
- - "~>"
|
165
171
|
- !ruby/object:Gem::Version
|
166
|
-
version: '
|
172
|
+
version: '5'
|
167
173
|
- !ruby/object:Gem::Dependency
|
168
174
|
name: rubocop
|
169
175
|
requirement: !ruby/object:Gem::Requirement
|
@@ -196,8 +202,11 @@ extra_rdoc_files: []
|
|
196
202
|
files:
|
197
203
|
- lib/airbrake.rb
|
198
204
|
- lib/airbrake/capistrano/tasks.rb
|
205
|
+
- lib/airbrake/delayed_job.rb
|
199
206
|
- lib/airbrake/delayed_job/plugin.rb
|
207
|
+
- lib/airbrake/logger.rb
|
200
208
|
- lib/airbrake/logger/airbrake_logger.rb
|
209
|
+
- lib/airbrake/rack.rb
|
201
210
|
- lib/airbrake/rack/context_filter.rb
|
202
211
|
- lib/airbrake/rack/http_headers_filter.rb
|
203
212
|
- lib/airbrake/rack/http_params_filter.rb
|
@@ -205,14 +214,19 @@ files:
|
|
205
214
|
- lib/airbrake/rack/request_body_filter.rb
|
206
215
|
- lib/airbrake/rack/session_filter.rb
|
207
216
|
- lib/airbrake/rack/user.rb
|
217
|
+
- lib/airbrake/rails.rb
|
208
218
|
- lib/airbrake/rails/action_controller.rb
|
209
219
|
- lib/airbrake/rails/active_job.rb
|
210
220
|
- lib/airbrake/rails/active_record.rb
|
211
221
|
- lib/airbrake/rails/railtie.rb
|
222
|
+
- lib/airbrake/rake.rb
|
212
223
|
- lib/airbrake/rake/task_ext.rb
|
213
224
|
- lib/airbrake/rake/tasks.rb
|
225
|
+
- lib/airbrake/resque.rb
|
214
226
|
- lib/airbrake/resque/failure.rb
|
227
|
+
- lib/airbrake/shoryuken.rb
|
215
228
|
- lib/airbrake/shoryuken/error_handler.rb
|
229
|
+
- lib/airbrake/sidekiq.rb
|
216
230
|
- lib/airbrake/sidekiq/error_handler.rb
|
217
231
|
- lib/airbrake/version.rb
|
218
232
|
- lib/generators/airbrake_generator.rb
|
@@ -220,11 +234,11 @@ files:
|
|
220
234
|
- spec/apps/rack/dummy_app.rb
|
221
235
|
- spec/apps/rails/dummy_app.rb
|
222
236
|
- spec/apps/rails/dummy_task.rake
|
223
|
-
- spec/apps/rails/logs/32.log
|
224
237
|
- spec/apps/rails/logs/40.log
|
225
|
-
- spec/apps/rails/logs/41.log
|
226
238
|
- spec/apps/rails/logs/42.log
|
227
239
|
- spec/apps/rails/logs/50.log
|
240
|
+
- spec/apps/rails/logs/51.log
|
241
|
+
- spec/apps/rails/logs/52.log
|
228
242
|
- spec/apps/sinatra/composite_app/sinatra_app1.rb
|
229
243
|
- spec/apps/sinatra/composite_app/sinatra_app2.rb
|
230
244
|
- spec/apps/sinatra/dummy_app.rb
|
@@ -234,7 +248,7 @@ files:
|
|
234
248
|
- spec/integration/shared_examples/rack_examples.rb
|
235
249
|
- spec/integration/sinatra/sinatra_spec.rb
|
236
250
|
- spec/spec_helper.rb
|
237
|
-
- spec/unit/
|
251
|
+
- spec/unit/logger_spec.rb
|
238
252
|
- spec/unit/rack/context_filter_spec.rb
|
239
253
|
- spec/unit/rack/http_headers_filter_spec.rb
|
240
254
|
- spec/unit/rack/http_params_filter_spec.rb
|
@@ -243,8 +257,8 @@ files:
|
|
243
257
|
- spec/unit/rack/session_filter_spec.rb
|
244
258
|
- spec/unit/rack/user_spec.rb
|
245
259
|
- spec/unit/rake/tasks_spec.rb
|
246
|
-
- spec/unit/
|
247
|
-
- spec/unit/
|
260
|
+
- spec/unit/shoryuken_spec.rb
|
261
|
+
- spec/unit/sidekiq_spec.rb
|
248
262
|
homepage: https://airbrake.io
|
249
263
|
licenses:
|
250
264
|
- MIT
|
@@ -260,9 +274,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
260
274
|
version: '2.0'
|
261
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
262
276
|
requirements:
|
263
|
-
- - "
|
277
|
+
- - ">"
|
264
278
|
- !ruby/object:Gem::Version
|
265
|
-
version:
|
279
|
+
version: 1.3.1
|
266
280
|
requirements: []
|
267
281
|
rubyforge_project:
|
268
282
|
rubygems_version: 2.6.8
|
@@ -274,11 +288,11 @@ test_files:
|
|
274
288
|
- spec/apps/rack/dummy_app.rb
|
275
289
|
- spec/apps/rails/dummy_app.rb
|
276
290
|
- spec/apps/rails/dummy_task.rake
|
277
|
-
- spec/apps/rails/logs/32.log
|
278
291
|
- spec/apps/rails/logs/40.log
|
279
|
-
- spec/apps/rails/logs/41.log
|
280
292
|
- spec/apps/rails/logs/42.log
|
281
293
|
- spec/apps/rails/logs/50.log
|
294
|
+
- spec/apps/rails/logs/51.log
|
295
|
+
- spec/apps/rails/logs/52.log
|
282
296
|
- spec/apps/sinatra/composite_app/sinatra_app1.rb
|
283
297
|
- spec/apps/sinatra/composite_app/sinatra_app2.rb
|
284
298
|
- spec/apps/sinatra/dummy_app.rb
|
@@ -288,7 +302,7 @@ test_files:
|
|
288
302
|
- spec/integration/shared_examples/rack_examples.rb
|
289
303
|
- spec/integration/sinatra/sinatra_spec.rb
|
290
304
|
- spec/spec_helper.rb
|
291
|
-
- spec/unit/
|
305
|
+
- spec/unit/logger_spec.rb
|
292
306
|
- spec/unit/rack/context_filter_spec.rb
|
293
307
|
- spec/unit/rack/http_headers_filter_spec.rb
|
294
308
|
- spec/unit/rack/http_params_filter_spec.rb
|
@@ -297,5 +311,5 @@ test_files:
|
|
297
311
|
- spec/unit/rack/session_filter_spec.rb
|
298
312
|
- spec/unit/rack/user_spec.rb
|
299
313
|
- spec/unit/rake/tasks_spec.rb
|
300
|
-
- spec/unit/
|
301
|
-
- spec/unit/
|
314
|
+
- spec/unit/shoryuken_spec.rb
|
315
|
+
- spec/unit/sidekiq_spec.rb
|
data/spec/apps/rails/logs/32.log
DELETED
@@ -1,852 +0,0 @@
|
|
1
|
-
# Logfile created on 2017-01-17 16:23:58 +0200 by logger.rb/56815
|
2
|
-
Connecting to database specified by DATABASE_URL
|
3
|
-
[1m[36m (0.8ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
5
|
-
[1m[36m (0.1ms)[0m [1mCREATE 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) [0m
|
6
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
7
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
8
|
-
Processing by DummyController#crash as HTML
|
9
|
-
Completed 500 Internal Server Error in 0.3ms
|
10
|
-
|
11
|
-
AirbrakeTestError (AirbrakeTestError):
|
12
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
13
|
-
|
14
|
-
|
15
|
-
Started GET "/" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
16
|
-
Processing by DummyController#index as HTML
|
17
|
-
Rendered dummy/index.html.erb within layouts/application (0.6ms)
|
18
|
-
Completed 200 OK in 5.1ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
19
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
20
|
-
Processing by DummyController#crash as HTML
|
21
|
-
Completed 500 Internal Server Error in 0.1ms
|
22
|
-
|
23
|
-
AirbrakeTestError (AirbrakeTestError):
|
24
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
25
|
-
|
26
|
-
|
27
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
28
|
-
Processing by DummyController#crash as HTML
|
29
|
-
Completed 500 Internal Server Error in 0.2ms
|
30
|
-
|
31
|
-
AirbrakeTestError (AirbrakeTestError):
|
32
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
33
|
-
|
34
|
-
|
35
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
36
|
-
Processing by DummyController#crash as HTML
|
37
|
-
Completed 500 Internal Server Error in 0.2ms
|
38
|
-
|
39
|
-
AirbrakeTestError (AirbrakeTestError):
|
40
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
41
|
-
|
42
|
-
|
43
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
44
|
-
Processing by DummyController#crash as HTML
|
45
|
-
Completed 500 Internal Server Error in 0.4ms
|
46
|
-
|
47
|
-
AirbrakeTestError (AirbrakeTestError):
|
48
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
49
|
-
|
50
|
-
|
51
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
52
|
-
Processing by DummyController#crash as HTML
|
53
|
-
Completed 500 Internal Server Error in 0.2ms
|
54
|
-
|
55
|
-
AirbrakeTestError (AirbrakeTestError):
|
56
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
57
|
-
|
58
|
-
|
59
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
60
|
-
Processing by DummyController#crash as HTML
|
61
|
-
Completed 500 Internal Server Error in 0.1ms
|
62
|
-
|
63
|
-
AirbrakeTestError (AirbrakeTestError):
|
64
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
65
|
-
|
66
|
-
|
67
|
-
Started GET "/delayed_job" for 127.0.0.1 at 2017-01-17 16:24:04 +0200
|
68
|
-
Processing by DummyController#delayed_job as HTML
|
69
|
-
Completed 500 Internal Server Error in 16.8ms
|
70
|
-
|
71
|
-
AirbrakeTestError (delayed_job error):
|
72
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
73
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
74
|
-
|
75
|
-
|
76
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
77
|
-
Processing by DummyController#crash as HTML
|
78
|
-
Completed 500 Internal Server Error in 0.2ms
|
79
|
-
|
80
|
-
AirbrakeTestError (AirbrakeTestError):
|
81
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
82
|
-
|
83
|
-
|
84
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
85
|
-
Processing by DummyController#crash as HTML
|
86
|
-
Completed 500 Internal Server Error in 0.1ms
|
87
|
-
|
88
|
-
AirbrakeTestError (AirbrakeTestError):
|
89
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
90
|
-
|
91
|
-
|
92
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
93
|
-
Processing by DummyController#crash as HTML
|
94
|
-
Completed 500 Internal Server Error in 0.2ms
|
95
|
-
|
96
|
-
AirbrakeTestError (AirbrakeTestError):
|
97
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
98
|
-
|
99
|
-
|
100
|
-
Started GET "/resque" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
101
|
-
Processing by DummyController#resque as HTML
|
102
|
-
Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
103
|
-
Completed 200 OK in 11.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
104
|
-
Started GET "/active_record_after_commit" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
105
|
-
Processing by DummyController#active_record_after_commit as HTML
|
106
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
107
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
108
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
109
|
-
#<AirbrakeTestError: after_commit>
|
110
|
-
Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.2ms)
|
111
|
-
Completed 200 OK in 6.9ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
112
|
-
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2017-01-17 16:24:08 +0200
|
113
|
-
Processing by DummyController#active_record_after_rollback as HTML
|
114
|
-
[1m[35m (0.0ms)[0m begin transaction
|
115
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
116
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
117
|
-
#<AirbrakeTestError: after_rollback>
|
118
|
-
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.2ms)
|
119
|
-
Completed 200 OK in 7.2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
120
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
121
|
-
Processing by DummyController#crash as HTML
|
122
|
-
Parameters: {"foo"=>"bar"}
|
123
|
-
Completed 500 Internal Server Error in 0.2ms
|
124
|
-
|
125
|
-
AirbrakeTestError (AirbrakeTestError):
|
126
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
127
|
-
|
128
|
-
|
129
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
130
|
-
Processing by DummyController#crash as HTML
|
131
|
-
Parameters: {"foo"=>"bar"}
|
132
|
-
Completed 500 Internal Server Error in 0.2ms
|
133
|
-
|
134
|
-
AirbrakeTestError (AirbrakeTestError):
|
135
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
136
|
-
|
137
|
-
|
138
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
139
|
-
Processing by DummyController#crash as HTML
|
140
|
-
Parameters: {"foo"=>"bar"}
|
141
|
-
Completed 500 Internal Server Error in 0.2ms
|
142
|
-
|
143
|
-
AirbrakeTestError (AirbrakeTestError):
|
144
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
145
|
-
|
146
|
-
|
147
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
148
|
-
Processing by DummyController#crash as HTML
|
149
|
-
Parameters: {"foo"=>"bar"}
|
150
|
-
Completed 500 Internal Server Error in 0.2ms
|
151
|
-
|
152
|
-
AirbrakeTestError (AirbrakeTestError):
|
153
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
154
|
-
|
155
|
-
|
156
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
157
|
-
Processing by DummyController#crash as HTML
|
158
|
-
Parameters: {"foo"=>"bar"}
|
159
|
-
Completed 500 Internal Server Error in 0.2ms
|
160
|
-
|
161
|
-
AirbrakeTestError (AirbrakeTestError):
|
162
|
-
lib/airbrake/rack/middleware.rb:23:in `call'
|
163
|
-
|
164
|
-
|
165
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
166
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
167
|
-
Parameters: {"foo"=>"bar"}
|
168
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
169
|
-
Completed 200 OK in 11.2ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
170
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
171
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
172
|
-
Parameters: {"foo"=>"bar"}
|
173
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
174
|
-
Completed 200 OK in 11.3ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
175
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
176
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
177
|
-
Parameters: {"foo"=>"bar"}
|
178
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
179
|
-
Completed 200 OK in 11.5ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
180
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
181
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
182
|
-
Parameters: {"foo"=>"bar"}
|
183
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
184
|
-
Completed 200 OK in 4.3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
185
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
186
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
187
|
-
Parameters: {"foo"=>"bar"}
|
188
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
189
|
-
Completed 200 OK in 3.7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
190
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
191
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
192
|
-
Parameters: {"foo"=>"bar"}
|
193
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
194
|
-
Completed 200 OK in 11.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
195
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
196
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
197
|
-
Parameters: {"foo"=>"bar"}
|
198
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
199
|
-
Completed 200 OK in 13.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
200
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
201
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
202
|
-
Parameters: {"foo"=>"bar"}
|
203
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
204
|
-
Completed 200 OK in 10.9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
205
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
206
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
207
|
-
Parameters: {"foo"=>"bar"}
|
208
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
209
|
-
Completed 200 OK in 11.3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
210
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-17 16:24:09 +0200
|
211
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
212
|
-
Parameters: {"foo"=>"bar"}
|
213
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
214
|
-
Completed 200 OK in 11.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
215
|
-
Connecting to database specified by DATABASE_URL
|
216
|
-
[1m[36m (3.1ms)[0m [1mselect sqlite_version(*)[0m
|
217
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
218
|
-
[1m[36m (0.1ms)[0m [1mCREATE 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) [0m
|
219
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
220
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:14 +0200
|
221
|
-
Processing by DummyController#crash as HTML
|
222
|
-
Completed 500 Internal Server Error in 0.3ms
|
223
|
-
|
224
|
-
AirbrakeTestError (AirbrakeTestError):
|
225
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
226
|
-
|
227
|
-
|
228
|
-
Started GET "/" for 127.0.0.1 at 2017-01-23 13:52:14 +0200
|
229
|
-
Processing by DummyController#index as HTML
|
230
|
-
Rendered dummy/index.html.erb within layouts/application (1.1ms)
|
231
|
-
Completed 200 OK in 8.5ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
232
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:14 +0200
|
233
|
-
Processing by DummyController#crash as HTML
|
234
|
-
Completed 500 Internal Server Error in 0.2ms
|
235
|
-
|
236
|
-
AirbrakeTestError (AirbrakeTestError):
|
237
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
238
|
-
|
239
|
-
|
240
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:17 +0200
|
241
|
-
Processing by DummyController#crash as HTML
|
242
|
-
Completed 500 Internal Server Error in 0.2ms
|
243
|
-
|
244
|
-
AirbrakeTestError (AirbrakeTestError):
|
245
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
246
|
-
|
247
|
-
|
248
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:20 +0200
|
249
|
-
Processing by DummyController#crash as HTML
|
250
|
-
Completed 500 Internal Server Error in 0.2ms
|
251
|
-
|
252
|
-
AirbrakeTestError (AirbrakeTestError):
|
253
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
254
|
-
|
255
|
-
|
256
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:23 +0200
|
257
|
-
Processing by DummyController#crash as HTML
|
258
|
-
Completed 500 Internal Server Error in 0.3ms
|
259
|
-
|
260
|
-
AirbrakeTestError (AirbrakeTestError):
|
261
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
262
|
-
|
263
|
-
|
264
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:26 +0200
|
265
|
-
Processing by DummyController#crash as HTML
|
266
|
-
Completed 500 Internal Server Error in 0.3ms
|
267
|
-
|
268
|
-
AirbrakeTestError (AirbrakeTestError):
|
269
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
270
|
-
|
271
|
-
|
272
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:29 +0200
|
273
|
-
Processing by DummyController#crash as HTML
|
274
|
-
Completed 500 Internal Server Error in 0.3ms
|
275
|
-
|
276
|
-
AirbrakeTestError (AirbrakeTestError):
|
277
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
278
|
-
|
279
|
-
|
280
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:32 +0200
|
281
|
-
Processing by DummyController#crash as HTML
|
282
|
-
Completed 500 Internal Server Error in 0.3ms
|
283
|
-
|
284
|
-
AirbrakeTestError (AirbrakeTestError):
|
285
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
286
|
-
|
287
|
-
|
288
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:35 +0200
|
289
|
-
Processing by DummyController#crash as HTML
|
290
|
-
Completed 500 Internal Server Error in 0.2ms
|
291
|
-
|
292
|
-
AirbrakeTestError (AirbrakeTestError):
|
293
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
294
|
-
|
295
|
-
|
296
|
-
Started GET "/delayed_job" for 127.0.0.1 at 2017-01-23 13:52:35 +0200
|
297
|
-
Processing by DummyController#delayed_job as HTML
|
298
|
-
Completed 500 Internal Server Error in 15.0ms
|
299
|
-
|
300
|
-
AirbrakeTestError (delayed_job error):
|
301
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
302
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
303
|
-
|
304
|
-
|
305
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 13:52:40 +0200
|
306
|
-
Processing by DummyController#crash as HTML
|
307
|
-
Completed 500 Internal Server Error in 0.2ms
|
308
|
-
|
309
|
-
AirbrakeTestError (AirbrakeTestError):
|
310
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
311
|
-
|
312
|
-
|
313
|
-
Started GET "/resque" for 127.0.0.1 at 2017-01-23 13:52:43 +0200
|
314
|
-
Processing by DummyController#resque as HTML
|
315
|
-
Rendered dummy/resque.html.erb within layouts/application (0.3ms)
|
316
|
-
Completed 200 OK in 11.4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
317
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:43 +0200
|
318
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
319
|
-
Parameters: {"foo"=>"bar"}
|
320
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
321
|
-
Completed 200 OK in 3.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
322
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:46 +0200
|
323
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
324
|
-
Parameters: {"foo"=>"bar"}
|
325
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
326
|
-
Completed 200 OK in 5.6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
327
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:49 +0200
|
328
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
329
|
-
Parameters: {"foo"=>"bar"}
|
330
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
331
|
-
Completed 200 OK in 11.6ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
332
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:52 +0200
|
333
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
334
|
-
Parameters: {"foo"=>"bar"}
|
335
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
336
|
-
Completed 200 OK in 11.0ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
337
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:55 +0200
|
338
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
339
|
-
Parameters: {"foo"=>"bar"}
|
340
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
341
|
-
Completed 200 OK in 12.8ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
342
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:52:58 +0200
|
343
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
344
|
-
Parameters: {"foo"=>"bar"}
|
345
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
346
|
-
Completed 200 OK in 11.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
347
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:01 +0200
|
348
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
349
|
-
Parameters: {"foo"=>"bar"}
|
350
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
351
|
-
Completed 200 OK in 11.9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
352
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:04 +0200
|
353
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
354
|
-
Parameters: {"foo"=>"bar"}
|
355
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
356
|
-
Completed 200 OK in 14.9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
357
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:07 +0200
|
358
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
359
|
-
Parameters: {"foo"=>"bar"}
|
360
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
361
|
-
Completed 200 OK in 14.2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
362
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:10 +0200
|
363
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
364
|
-
Parameters: {"foo"=>"bar"}
|
365
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
366
|
-
Completed 200 OK in 10.8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
367
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:13 +0200
|
368
|
-
Processing by DummyController#crash as HTML
|
369
|
-
Parameters: {"foo"=>"bar"}
|
370
|
-
Completed 500 Internal Server Error in 0.2ms
|
371
|
-
|
372
|
-
AirbrakeTestError (AirbrakeTestError):
|
373
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
374
|
-
|
375
|
-
|
376
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:16 +0200
|
377
|
-
Processing by DummyController#crash as HTML
|
378
|
-
Parameters: {"foo"=>"bar"}
|
379
|
-
Completed 500 Internal Server Error in 0.2ms
|
380
|
-
|
381
|
-
AirbrakeTestError (AirbrakeTestError):
|
382
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
383
|
-
|
384
|
-
|
385
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:19 +0200
|
386
|
-
Processing by DummyController#crash as HTML
|
387
|
-
Parameters: {"foo"=>"bar"}
|
388
|
-
Completed 500 Internal Server Error in 0.2ms
|
389
|
-
|
390
|
-
AirbrakeTestError (AirbrakeTestError):
|
391
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
392
|
-
|
393
|
-
|
394
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:22 +0200
|
395
|
-
Processing by DummyController#crash as HTML
|
396
|
-
Parameters: {"foo"=>"bar"}
|
397
|
-
Completed 500 Internal Server Error in 0.2ms
|
398
|
-
|
399
|
-
AirbrakeTestError (AirbrakeTestError):
|
400
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
401
|
-
|
402
|
-
|
403
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 13:53:25 +0200
|
404
|
-
Processing by DummyController#crash as HTML
|
405
|
-
Parameters: {"foo"=>"bar"}
|
406
|
-
Completed 500 Internal Server Error in 0.2ms
|
407
|
-
|
408
|
-
AirbrakeTestError (AirbrakeTestError):
|
409
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
410
|
-
|
411
|
-
|
412
|
-
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2017-01-23 13:53:28 +0200
|
413
|
-
Processing by DummyController#active_record_after_rollback as HTML
|
414
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
415
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
|
416
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
417
|
-
#<AirbrakeTestError: after_rollback>
|
418
|
-
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.2ms)
|
419
|
-
Completed 200 OK in 9.5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
420
|
-
Started GET "/active_record_after_commit" for 127.0.0.1 at 2017-01-23 13:53:28 +0200
|
421
|
-
Processing by DummyController#active_record_after_commit as HTML
|
422
|
-
[1m[35m (0.0ms)[0m begin transaction
|
423
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
424
|
-
[1m[35m (0.0ms)[0m commit transaction
|
425
|
-
#<AirbrakeTestError: after_commit>
|
426
|
-
Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.3ms)
|
427
|
-
Completed 200 OK in 14.3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
428
|
-
Connecting to database specified by DATABASE_URL
|
429
|
-
[1m[36m (8.0ms)[0m [1mCREATE TABLE "books" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255)) [0m
|
430
|
-
[1m[35m (2.0ms)[0m SELECT name FROM sqlite_master WHERE type = 'table' AND name = "delayed_jobs"
|
431
|
-
[1m[36m (0.0ms)[0m [1mCREATE 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) [0m
|
432
|
-
[1m[35m (0.0ms)[0m SELECT sqlite_version(*)
|
433
|
-
[1m[36m (1.0ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
434
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:26 +0200
|
435
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
436
|
-
Parameters: {"foo"=>"bar"}
|
437
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (5.0ms)
|
438
|
-
Completed 200 OK in 146.0ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
439
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:26 +0200
|
440
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
441
|
-
Parameters: {"foo"=>"bar"}
|
442
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (2.0ms)
|
443
|
-
Completed 200 OK in 50.0ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
444
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
445
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
446
|
-
Parameters: {"foo"=>"bar"}
|
447
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (2.0ms)
|
448
|
-
Completed 200 OK in 79.0ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
449
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
450
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
451
|
-
Parameters: {"foo"=>"bar"}
|
452
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (2.0ms)
|
453
|
-
Completed 200 OK in 36.0ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
454
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
455
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
456
|
-
Parameters: {"foo"=>"bar"}
|
457
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (2.0ms)
|
458
|
-
Completed 200 OK in 29.0ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
459
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
460
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
461
|
-
Parameters: {"foo"=>"bar"}
|
462
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (5.0ms)
|
463
|
-
Completed 200 OK in 38.0ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
464
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
465
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
466
|
-
Parameters: {"foo"=>"bar"}
|
467
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (2.0ms)
|
468
|
-
Completed 200 OK in 10.0ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
469
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
470
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
471
|
-
Parameters: {"foo"=>"bar"}
|
472
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (2.0ms)
|
473
|
-
Completed 200 OK in 15.0ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
474
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
475
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
476
|
-
Parameters: {"foo"=>"bar"}
|
477
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (2.0ms)
|
478
|
-
Completed 200 OK in 12.0ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
479
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
480
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
481
|
-
Parameters: {"foo"=>"bar"}
|
482
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (3.0ms)
|
483
|
-
Completed 200 OK in 14.0ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
484
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:27 +0200
|
485
|
-
Processing by DummyController#crash as HTML
|
486
|
-
Parameters: {"foo"=>"bar"}
|
487
|
-
Completed 500 Internal Server Error in 2.0ms
|
488
|
-
|
489
|
-
AirbrakeTestError (AirbrakeTestError):
|
490
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
491
|
-
|
492
|
-
|
493
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:28 +0200
|
494
|
-
Processing by DummyController#crash as HTML
|
495
|
-
Parameters: {"foo"=>"bar"}
|
496
|
-
Completed 500 Internal Server Error in 2.0ms
|
497
|
-
|
498
|
-
AirbrakeTestError (AirbrakeTestError):
|
499
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
500
|
-
|
501
|
-
|
502
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:28 +0200
|
503
|
-
Processing by DummyController#crash as HTML
|
504
|
-
Parameters: {"foo"=>"bar"}
|
505
|
-
Completed 500 Internal Server Error in 2.0ms
|
506
|
-
|
507
|
-
AirbrakeTestError (AirbrakeTestError):
|
508
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
509
|
-
|
510
|
-
|
511
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:28 +0200
|
512
|
-
Processing by DummyController#crash as HTML
|
513
|
-
Parameters: {"foo"=>"bar"}
|
514
|
-
Completed 500 Internal Server Error in 2.0ms
|
515
|
-
|
516
|
-
AirbrakeTestError (AirbrakeTestError):
|
517
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
518
|
-
|
519
|
-
|
520
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-01-23 19:00:28 +0200
|
521
|
-
Processing by DummyController#crash as HTML
|
522
|
-
Parameters: {"foo"=>"bar"}
|
523
|
-
Completed 500 Internal Server Error in 2.0ms
|
524
|
-
|
525
|
-
AirbrakeTestError (AirbrakeTestError):
|
526
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
527
|
-
|
528
|
-
|
529
|
-
Started GET "/resque" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
530
|
-
Processing by DummyController#resque as HTML
|
531
|
-
Rendered dummy/resque.html.erb within layouts/application (2.0ms)
|
532
|
-
Completed 200 OK in 30.0ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
533
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
534
|
-
Processing by DummyController#crash as HTML
|
535
|
-
Completed 500 Internal Server Error in 2.0ms
|
536
|
-
|
537
|
-
AirbrakeTestError (AirbrakeTestError):
|
538
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
539
|
-
|
540
|
-
|
541
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
542
|
-
Processing by DummyController#crash as HTML
|
543
|
-
Completed 500 Internal Server Error in 2.0ms
|
544
|
-
|
545
|
-
AirbrakeTestError (AirbrakeTestError):
|
546
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
547
|
-
|
548
|
-
|
549
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
550
|
-
Processing by DummyController#crash as HTML
|
551
|
-
Completed 500 Internal Server Error in 1.0ms
|
552
|
-
|
553
|
-
AirbrakeTestError (AirbrakeTestError):
|
554
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
555
|
-
|
556
|
-
|
557
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
558
|
-
Processing by DummyController#crash as HTML
|
559
|
-
Completed 500 Internal Server Error in 3.0ms
|
560
|
-
|
561
|
-
AirbrakeTestError (AirbrakeTestError):
|
562
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
563
|
-
|
564
|
-
|
565
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
566
|
-
Processing by DummyController#crash as HTML
|
567
|
-
Completed 500 Internal Server Error in 2.0ms
|
568
|
-
|
569
|
-
AirbrakeTestError (AirbrakeTestError):
|
570
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
571
|
-
|
572
|
-
|
573
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
574
|
-
Processing by DummyController#crash as HTML
|
575
|
-
Completed 500 Internal Server Error in 2.0ms
|
576
|
-
|
577
|
-
AirbrakeTestError (AirbrakeTestError):
|
578
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
579
|
-
|
580
|
-
|
581
|
-
Started GET "/" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
582
|
-
Processing by DummyController#index as HTML
|
583
|
-
Rendered dummy/index.html.erb within layouts/application (1.0ms)
|
584
|
-
Completed 200 OK in 4.0ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
585
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:29 +0200
|
586
|
-
Processing by DummyController#crash as HTML
|
587
|
-
Completed 500 Internal Server Error in 2.0ms
|
588
|
-
|
589
|
-
AirbrakeTestError (AirbrakeTestError):
|
590
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
591
|
-
|
592
|
-
|
593
|
-
Started GET "/delayed_job" for 127.0.0.1 at 2017-01-23 19:00:30 +0200
|
594
|
-
Processing by DummyController#delayed_job as HTML
|
595
|
-
[1m[35m (0.0ms)[0m SELECT name FROM sqlite_master WHERE type = 'table' AND name = "delayed_jobs"
|
596
|
-
Completed 500 Internal Server Error in 74.0ms
|
597
|
-
|
598
|
-
AirbrakeTestError (delayed_job error):
|
599
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block in Airbrake'
|
600
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
601
|
-
|
602
|
-
|
603
|
-
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2017-01-23 19:00:34 +0200
|
604
|
-
Processing by DummyController#active_record_after_rollback as HTML
|
605
|
-
[1m[36m (0.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "books"[0m
|
606
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "books" ("title") VALUES ('Bango')
|
607
|
-
#<AirbrakeTestError: after_rollback>
|
608
|
-
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (1.0ms)
|
609
|
-
Completed 200 OK in 54.0ms (Views: 5.2ms | ActiveRecord: 1.0ms)
|
610
|
-
Started GET "/active_record_after_commit" for 127.0.0.1 at 2017-01-23 19:00:34 +0200
|
611
|
-
Processing by DummyController#active_record_after_commit as HTML
|
612
|
-
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "books" ("title") VALUES ('Bingo')[0m
|
613
|
-
#<AirbrakeTestError: after_commit>
|
614
|
-
Rendered dummy/active_record_after_commit.html.erb within layouts/application (2.0ms)
|
615
|
-
Completed 200 OK in 15.0ms (Views: 6.3ms | ActiveRecord: 1.0ms)
|
616
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:34 +0200
|
617
|
-
Processing by DummyController#crash as HTML
|
618
|
-
Completed 500 Internal Server Error in 1.0ms
|
619
|
-
|
620
|
-
AirbrakeTestError (AirbrakeTestError):
|
621
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
622
|
-
|
623
|
-
|
624
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:34 +0200
|
625
|
-
Processing by DummyController#crash as HTML
|
626
|
-
Completed 500 Internal Server Error in 2.0ms
|
627
|
-
|
628
|
-
AirbrakeTestError (AirbrakeTestError):
|
629
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
630
|
-
|
631
|
-
|
632
|
-
Started GET "/crash" for 127.0.0.1 at 2017-01-23 19:00:34 +0200
|
633
|
-
Processing by DummyController#crash as HTML
|
634
|
-
Completed 500 Internal Server Error in 1.0ms
|
635
|
-
|
636
|
-
AirbrakeTestError (AirbrakeTestError):
|
637
|
-
lib/airbrake/rack/middleware.rb:48:in `call'
|
638
|
-
|
639
|
-
|
640
|
-
Connecting to database specified by DATABASE_URL
|
641
|
-
[1m[36m (3.2ms)[0m [1mselect sqlite_version(*)[0m
|
642
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
643
|
-
[1m[36m (0.1ms)[0m [1mCREATE 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) [0m
|
644
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
645
|
-
Started GET "/delayed_job" for 127.0.0.1 at 2017-02-07 15:44:54 +0000
|
646
|
-
Processing by DummyController#delayed_job as HTML
|
647
|
-
Completed 500 Internal Server Error in 12.0ms
|
648
|
-
|
649
|
-
AirbrakeTestError (delayed_job error):
|
650
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
651
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
652
|
-
|
653
|
-
|
654
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:58 +0000
|
655
|
-
Processing by DummyController#crash as HTML
|
656
|
-
Completed 500 Internal Server Error in 0.4ms
|
657
|
-
|
658
|
-
AirbrakeTestError (AirbrakeTestError):
|
659
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
660
|
-
|
661
|
-
|
662
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
663
|
-
Processing by DummyController#crash as HTML
|
664
|
-
Completed 500 Internal Server Error in 0.2ms
|
665
|
-
|
666
|
-
AirbrakeTestError (AirbrakeTestError):
|
667
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
668
|
-
|
669
|
-
|
670
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
671
|
-
Processing by DummyController#crash as HTML
|
672
|
-
Completed 500 Internal Server Error in 0.2ms
|
673
|
-
|
674
|
-
AirbrakeTestError (AirbrakeTestError):
|
675
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
676
|
-
|
677
|
-
|
678
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
679
|
-
Processing by DummyController#crash as HTML
|
680
|
-
Completed 500 Internal Server Error in 0.2ms
|
681
|
-
|
682
|
-
AirbrakeTestError (AirbrakeTestError):
|
683
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
684
|
-
|
685
|
-
|
686
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
687
|
-
Processing by DummyController#crash as HTML
|
688
|
-
Completed 500 Internal Server Error in 0.2ms
|
689
|
-
|
690
|
-
AirbrakeTestError (AirbrakeTestError):
|
691
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
692
|
-
|
693
|
-
|
694
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
695
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
696
|
-
Parameters: {"foo"=>"bar"}
|
697
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (1.1ms)
|
698
|
-
Completed 200 OK in 20.3ms (Views: 17.1ms | ActiveRecord: 0.0ms)
|
699
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
700
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
701
|
-
Parameters: {"foo"=>"bar"}
|
702
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
703
|
-
Completed 200 OK in 16.4ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
704
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
705
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
706
|
-
Parameters: {"foo"=>"bar"}
|
707
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
708
|
-
Completed 200 OK in 3.1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
709
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
710
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
711
|
-
Parameters: {"foo"=>"bar"}
|
712
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
713
|
-
Completed 200 OK in 12.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
714
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
715
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
716
|
-
Parameters: {"foo"=>"bar"}
|
717
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
718
|
-
Completed 200 OK in 10.3ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
719
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
720
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
721
|
-
Parameters: {"foo"=>"bar"}
|
722
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.1ms)
|
723
|
-
Completed 200 OK in 12.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
724
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
725
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
726
|
-
Parameters: {"foo"=>"bar"}
|
727
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
728
|
-
Completed 200 OK in 11.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
729
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
730
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
731
|
-
Parameters: {"foo"=>"bar"}
|
732
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
733
|
-
Completed 200 OK in 11.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
734
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
735
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
736
|
-
Parameters: {"foo"=>"bar"}
|
737
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
738
|
-
Completed 200 OK in 15.4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
739
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
740
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
741
|
-
Parameters: {"foo"=>"bar"}
|
742
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
743
|
-
Completed 200 OK in 10.9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
744
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
745
|
-
Processing by DummyController#crash as HTML
|
746
|
-
Parameters: {"foo"=>"bar"}
|
747
|
-
Completed 500 Internal Server Error in 0.2ms
|
748
|
-
|
749
|
-
AirbrakeTestError (AirbrakeTestError):
|
750
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
751
|
-
|
752
|
-
|
753
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
754
|
-
Processing by DummyController#crash as HTML
|
755
|
-
Parameters: {"foo"=>"bar"}
|
756
|
-
Completed 500 Internal Server Error in 0.2ms
|
757
|
-
|
758
|
-
AirbrakeTestError (AirbrakeTestError):
|
759
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
760
|
-
|
761
|
-
|
762
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
763
|
-
Processing by DummyController#crash as HTML
|
764
|
-
Parameters: {"foo"=>"bar"}
|
765
|
-
Completed 500 Internal Server Error in 0.2ms
|
766
|
-
|
767
|
-
AirbrakeTestError (AirbrakeTestError):
|
768
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
769
|
-
|
770
|
-
|
771
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
772
|
-
Processing by DummyController#crash as HTML
|
773
|
-
Parameters: {"foo"=>"bar"}
|
774
|
-
Completed 500 Internal Server Error in 0.2ms
|
775
|
-
|
776
|
-
AirbrakeTestError (AirbrakeTestError):
|
777
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
778
|
-
|
779
|
-
|
780
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
781
|
-
Processing by DummyController#crash as HTML
|
782
|
-
Parameters: {"foo"=>"bar"}
|
783
|
-
Completed 500 Internal Server Error in 0.2ms
|
784
|
-
|
785
|
-
AirbrakeTestError (AirbrakeTestError):
|
786
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
787
|
-
|
788
|
-
|
789
|
-
Started GET "/active_record_after_commit" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
790
|
-
Processing by DummyController#active_record_after_commit as HTML
|
791
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
792
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
793
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
794
|
-
#<AirbrakeTestError: after_commit>
|
795
|
-
Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.2ms)
|
796
|
-
Completed 200 OK in 17.5ms (Views: 11.9ms | ActiveRecord: 0.3ms)
|
797
|
-
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
798
|
-
Processing by DummyController#active_record_after_rollback as HTML
|
799
|
-
[1m[35m (0.0ms)[0m begin transaction
|
800
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
801
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
802
|
-
#<AirbrakeTestError: after_rollback>
|
803
|
-
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.2ms)
|
804
|
-
Completed 200 OK in 20.8ms (Views: 15.0ms | ActiveRecord: 0.1ms)
|
805
|
-
Started GET "/" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
806
|
-
Processing by DummyController#index as HTML
|
807
|
-
Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
808
|
-
Completed 200 OK in 0.9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
809
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
810
|
-
Processing by DummyController#crash as HTML
|
811
|
-
Completed 500 Internal Server Error in 0.2ms
|
812
|
-
|
813
|
-
AirbrakeTestError (AirbrakeTestError):
|
814
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
815
|
-
|
816
|
-
|
817
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
818
|
-
Processing by DummyController#crash as HTML
|
819
|
-
Completed 500 Internal Server Error in 0.2ms
|
820
|
-
|
821
|
-
AirbrakeTestError (AirbrakeTestError):
|
822
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
823
|
-
|
824
|
-
|
825
|
-
Started GET "/resque" for 127.0.0.1 at 2017-02-07 15:44:59 +0000
|
826
|
-
Processing by DummyController#resque as HTML
|
827
|
-
Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
828
|
-
Completed 200 OK in 12.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
829
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:45:00 +0000
|
830
|
-
Processing by DummyController#crash as HTML
|
831
|
-
Completed 500 Internal Server Error in 0.2ms
|
832
|
-
|
833
|
-
AirbrakeTestError (AirbrakeTestError):
|
834
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
835
|
-
|
836
|
-
|
837
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:45:00 +0000
|
838
|
-
Processing by DummyController#crash as HTML
|
839
|
-
Completed 500 Internal Server Error in 0.2ms
|
840
|
-
|
841
|
-
AirbrakeTestError (AirbrakeTestError):
|
842
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
843
|
-
|
844
|
-
|
845
|
-
Started GET "/crash" for 127.0.0.1 at 2017-02-07 15:45:00 +0000
|
846
|
-
Processing by DummyController#crash as HTML
|
847
|
-
Completed 500 Internal Server Error in 0.2ms
|
848
|
-
|
849
|
-
AirbrakeTestError (AirbrakeTestError):
|
850
|
-
lib/airbrake/rack/middleware.rb:51:in `call'
|
851
|
-
|
852
|
-
|