airbrake 8.1.4 → 8.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/airbrake/logger.rb +3 -3
- data/lib/airbrake/rack/context_filter.rb +16 -13
- data/lib/airbrake/rack/middleware.rb +19 -63
- data/lib/airbrake/rails.rb +8 -0
- data/lib/airbrake/rails/action_controller.rb +8 -8
- data/lib/airbrake/rails/action_controller_notify_subscriber.rb +11 -12
- data/lib/airbrake/rails/action_controller_route_subscriber.rb +5 -0
- data/lib/airbrake/rails/active_job.rb +6 -5
- data/lib/airbrake/rails/active_record_subscriber.rb +30 -12
- data/lib/airbrake/rake.rb +10 -9
- data/lib/airbrake/rake/tasks.rb +1 -1
- data/lib/airbrake/version.rb +1 -1
- data/spec/apps/rails/dummy_task.rake +0 -5
- data/spec/apps/rails/logs/32.log +652 -27267
- data/spec/apps/rails/logs/42.log +597 -1717
- data/spec/apps/rails/logs/52.log +5237 -1
- data/spec/integration/rack/rack_spec.rb +5 -26
- data/spec/integration/rails/rails_spec.rb +135 -200
- data/spec/integration/rails/rake_spec.rb +66 -141
- data/spec/integration/shared_examples/rack_examples.rb +72 -101
- data/spec/integration/sinatra/sinatra_spec.rb +9 -55
- data/spec/spec_helper.rb +8 -3
- data/spec/support/matchers/a_notice_with.rb +29 -0
- data/spec/unit/logger_spec.rb +3 -13
- data/spec/unit/rack/middleware_spec.rb +16 -61
- data/spec/unit/rake/tasks_spec.rb +2 -2
- data/spec/unit/shoryuken_spec.rb +0 -17
- data/spec/unit/sidekiq/retryable_jobs_filter_spec.rb +1 -1
- data/spec/unit/sidekiq_spec.rb +0 -15
- metadata +20 -10
- data/spec/apps/rails/logs/51.log +0 -3166
- data/spec/apps/sinatra/composite_app/sinatra_app1.rb +0 -11
- data/spec/apps/sinatra/composite_app/sinatra_app2.rb +0 -11
@@ -2,9 +2,6 @@ require 'sinatra'
|
|
2
2
|
require 'spec_helper'
|
3
3
|
|
4
4
|
require 'apps/sinatra/dummy_app'
|
5
|
-
require 'apps/sinatra/composite_app/sinatra_app1'
|
6
|
-
require 'apps/sinatra/composite_app/sinatra_app2'
|
7
|
-
|
8
5
|
require 'integration/shared_examples/rack_examples'
|
9
6
|
|
10
7
|
RSpec.describe "Sinatra integration specs" do
|
@@ -13,65 +10,22 @@ RSpec.describe "Sinatra integration specs" do
|
|
13
10
|
include_examples 'rack examples'
|
14
11
|
|
15
12
|
describe "context payload" do
|
13
|
+
before { stub_request(:post, endpoint).to_return(status: 200, body: '') }
|
14
|
+
|
16
15
|
it "includes version" do
|
17
16
|
get '/crash'
|
18
|
-
|
17
|
+
sleep 2
|
18
|
+
|
19
|
+
body = /"context":{.*"versions":{"sinatra":"\d\./
|
20
|
+
expect(a_request(:post, endpoint).with(body: body)).to have_been_made
|
19
21
|
end
|
20
22
|
|
21
23
|
it "includes route" do
|
22
24
|
get '/crash'
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
context "when multiple apps are mounted" do
|
28
|
-
let(:endpoint1) { 'https://api.airbrake.io/api/v3/projects/113743/notices' }
|
29
|
-
let(:endpoint2) { 'https://api.airbrake.io/api/v3/projects/99123/notices' }
|
30
|
-
|
31
|
-
def env_for(url, opts = {})
|
32
|
-
Rack::MockRequest.env_for(url, opts)
|
33
|
-
end
|
34
|
-
|
35
|
-
before do
|
36
|
-
stub_request(:post, endpoint1).to_return(status: 201, body: '{}')
|
37
|
-
stub_request(:post, endpoint2).to_return(status: 201, body: '{}')
|
38
|
-
end
|
39
|
-
|
40
|
-
context "and when both apps use their own notifiers and middlewares" do
|
41
|
-
let(:app) do
|
42
|
-
Rack::Builder.new do
|
43
|
-
map('/app1') do
|
44
|
-
use Airbrake::Rack::Middleware, SinatraApp1
|
45
|
-
run SinatraApp1.new
|
46
|
-
end
|
47
|
-
|
48
|
-
map '/app2' do
|
49
|
-
use Airbrake::Rack::Middleware, SinatraApp2
|
50
|
-
run SinatraApp2.new
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
it "reports errors from SinatraApp1 notifier" do
|
56
|
-
get '/app1'
|
57
|
-
|
58
|
-
body = %r|"backtrace":\[{"file":".+apps/sinatra/composite_app/sinatra_app1.rb"|
|
59
|
-
|
60
|
-
wait_for(
|
61
|
-
a_request(:post, endpoint1).
|
62
|
-
with(body: body)
|
63
|
-
).to have_been_made.once
|
64
|
-
end
|
65
|
-
|
66
|
-
it "reports errors from SinatraApp2 notifier" do
|
67
|
-
get '/app2'
|
25
|
+
sleep 2
|
68
26
|
|
69
|
-
|
70
|
-
|
71
|
-
a_request(:post, endpoint2).
|
72
|
-
with(body: body)
|
73
|
-
).to have_been_made.once
|
74
|
-
end
|
27
|
+
body = %r("context":{.*"route":"\/crash".*})
|
28
|
+
expect(a_request(:post, endpoint).with(body: body)).to have_been_made
|
75
29
|
end
|
76
30
|
end
|
77
31
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -10,14 +10,19 @@ require 'pry'
|
|
10
10
|
require 'airbrake'
|
11
11
|
require 'airbrake/rake/tasks'
|
12
12
|
|
13
|
+
Dir[
|
14
|
+
File.expand_path(File.join(File.dirname(__FILE__), 'support', '**', '*.rb'))
|
15
|
+
].each do |file|
|
16
|
+
require file
|
17
|
+
end
|
18
|
+
|
13
19
|
Airbrake.configure do |c|
|
14
20
|
c.project_id = 113743
|
15
21
|
c.project_key = 'fd04e13d806a90f96614ad8e529b2822'
|
16
|
-
c.logger = Logger.new('/dev/null')
|
17
22
|
c.app_version = '1.2.3'
|
18
23
|
c.workers = 5
|
19
|
-
c.
|
20
|
-
c.
|
24
|
+
c.performance_stats = true
|
25
|
+
c.performance_stats_flush_period = 1
|
21
26
|
end
|
22
27
|
|
23
28
|
RSpec.configure do |c|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
RSpec::Matchers.define :a_notice_with do |access_keys, expected_val|
|
2
|
+
match do |notice|
|
3
|
+
payload = notice[access_keys.shift]
|
4
|
+
break(false) unless payload
|
5
|
+
|
6
|
+
actual_val =
|
7
|
+
if payload.respond_to?(:dig)
|
8
|
+
payload.dig(*access_keys)
|
9
|
+
else
|
10
|
+
dig_pre_23(payload, *access_keys)
|
11
|
+
end
|
12
|
+
|
13
|
+
if expected_val.is_a?(Regexp)
|
14
|
+
actual_val =~ expected_val
|
15
|
+
else
|
16
|
+
actual_val == expected_val
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
# TODO: Use the normal "dig" version once we support Ruby 2.3 and above.
|
21
|
+
def dig_pre_23(hash, *keys)
|
22
|
+
v = hash[keys.shift]
|
23
|
+
while keys.any?
|
24
|
+
return unless v.is_a?(Hash)
|
25
|
+
v = v[keys.shift]
|
26
|
+
end
|
27
|
+
v
|
28
|
+
end
|
29
|
+
end
|
data/spec/unit/logger_spec.rb
CHANGED
@@ -4,13 +4,7 @@ RSpec.describe Airbrake::AirbrakeLogger do
|
|
4
4
|
let(:project_id) { 113743 }
|
5
5
|
let(:project_key) { 'fd04e13d806a90f96614ad8e529b2822' }
|
6
6
|
let(:endpoint) { "https://api.airbrake.io/api/v3/projects/#{project_id}/notices" }
|
7
|
-
|
8
|
-
let(:airbrake) do
|
9
|
-
Airbrake::NoticeNotifier.new(
|
10
|
-
Airbrake::Config.new(project_id: project_id, project_key: project_key)
|
11
|
-
)
|
12
|
-
end
|
13
|
-
|
7
|
+
let(:airbrake) { Airbrake::NoticeNotifier.new }
|
14
8
|
let(:logger) { Logger.new('/dev/null') }
|
15
9
|
|
16
10
|
subject { described_class.new(logger) }
|
@@ -24,10 +18,6 @@ RSpec.describe Airbrake::AirbrakeLogger do
|
|
24
18
|
end
|
25
19
|
|
26
20
|
describe "#airbrake_notifier" do
|
27
|
-
it "has the default notifier installed by default" do
|
28
|
-
expect(subject.airbrake_notifier).to be_an(Airbrake::NoticeNotifier)
|
29
|
-
end
|
30
|
-
|
31
21
|
it "installs Airbrake notifier" do
|
32
22
|
notifier_id = airbrake.object_id
|
33
23
|
expect(subject.airbrake_notifier.object_id).not_to eq(notifier_id)
|
@@ -66,8 +56,8 @@ RSpec.describe Airbrake::AirbrakeLogger do
|
|
66
56
|
subject.fatal('bongo')
|
67
57
|
|
68
58
|
wait_for(
|
69
|
-
a_request(:post, endpoint)
|
70
|
-
with(body: %r{"file":".+/logger.rb"})
|
59
|
+
a_request(:post, endpoint)
|
60
|
+
.with(body: %r{"file":".+/logger.rb"})
|
71
61
|
).not_to have_been_made
|
72
62
|
wait_for(a_request(:post, endpoint)).to have_been_made.once
|
73
63
|
end
|
@@ -18,67 +18,22 @@ RSpec.describe Airbrake::Rack::Middleware do
|
|
18
18
|
stub_request(:post, endpoint).to_return(status: 201, body: '{}')
|
19
19
|
end
|
20
20
|
|
21
|
-
describe "#new" do
|
22
|
-
it "doesn't add filters if no notifiers are configured" do
|
23
|
-
expect do
|
24
|
-
expect(described_class.new(faulty_app, :unknown_notifier))
|
25
|
-
end.not_to raise_error
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
21
|
describe "#call" do
|
30
22
|
context "when app raises an exception" do
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
let(:expected_body) { /"errors":\[{"type":"AirbrakeTestError"/ }
|
35
|
-
|
36
|
-
before do
|
37
|
-
Airbrake.configure(notifier_name) do |c|
|
38
|
-
c.project_id = 92123
|
39
|
-
c.project_key = 'ad04e13d806a90f96614ad8e529b2821'
|
40
|
-
c.logger = Logger.new('/dev/null')
|
41
|
-
c.app_version = '3.2.1'
|
42
|
-
end
|
43
|
-
|
44
|
-
stub_request(:post, bingo_endpoint).to_return(status: 201, body: '{}')
|
45
|
-
end
|
46
|
-
|
47
|
-
after { Airbrake[notifier_name].close }
|
23
|
+
it "rescues the exception, notifies Airbrake & re-raises it" do
|
24
|
+
expect { described_class.new(faulty_app).call(env_for('/')) }
|
25
|
+
.to raise_error(AirbrakeTestError)
|
48
26
|
|
49
|
-
|
50
|
-
expect do
|
51
|
-
described_class.new(faulty_app, notifier_name).call(env_for('/'))
|
52
|
-
end.to raise_error(AirbrakeTestError)
|
53
|
-
|
54
|
-
wait_for(
|
55
|
-
a_request(:post, bingo_endpoint).
|
56
|
-
with(body: expected_body)
|
57
|
-
).to have_been_made.once
|
58
|
-
|
59
|
-
expect(
|
60
|
-
a_request(:post, endpoint).
|
61
|
-
with(body: expected_body)
|
62
|
-
).not_to have_been_made
|
63
|
-
end
|
27
|
+
wait_for_a_request_with_body(/"errors":\[{"type":"AirbrakeTestError"/)
|
64
28
|
end
|
65
29
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
to raise_error(AirbrakeTestError)
|
30
|
+
it "sends framework version and name" do
|
31
|
+
expect { described_class.new(faulty_app).call(env_for('/bingo/bango')) }
|
32
|
+
.to raise_error(AirbrakeTestError)
|
70
33
|
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
it "sends framework version and name" do
|
75
|
-
expect { described_class.new(faulty_app).call(env_for('/bingo/bango')) }.
|
76
|
-
to raise_error(AirbrakeTestError)
|
77
|
-
|
78
|
-
wait_for_a_request_with_body(
|
79
|
-
/"context":{.*"versions":{"(rails|sinatra|rack_version)"/
|
80
|
-
)
|
81
|
-
end
|
34
|
+
wait_for_a_request_with_body(
|
35
|
+
/"context":{.*"versions":{"(rails|sinatra|rack_version)"/
|
36
|
+
)
|
82
37
|
end
|
83
38
|
end
|
84
39
|
|
@@ -116,14 +71,14 @@ RSpec.describe Airbrake::Rack::Middleware do
|
|
116
71
|
|
117
72
|
context "when Airbrake is not configured" do
|
118
73
|
it "returns nil" do
|
119
|
-
allow(Airbrake
|
120
|
-
allow(Airbrake
|
74
|
+
allow(Airbrake).to receive(:build_notice).and_return(nil)
|
75
|
+
allow(Airbrake).to receive(:notify)
|
121
76
|
|
122
|
-
expect { described_class.new(faulty_app).call(env_for('/')) }
|
123
|
-
to raise_error(AirbrakeTestError)
|
77
|
+
expect { described_class.new(faulty_app).call(env_for('/')) }
|
78
|
+
.to raise_error(AirbrakeTestError)
|
124
79
|
|
125
|
-
expect(Airbrake
|
126
|
-
expect(Airbrake
|
80
|
+
expect(Airbrake).to have_received(:build_notice)
|
81
|
+
expect(Airbrake).not_to have_received(:notify)
|
127
82
|
end
|
128
83
|
end
|
129
84
|
end
|
@@ -45,8 +45,8 @@ RSpec.describe "airbrake/rake/tasks" do
|
|
45
45
|
end
|
46
46
|
|
47
47
|
it "raises error" do
|
48
|
-
expect { task.invoke }
|
49
|
-
to raise_error(Airbrake::Error, 'airbrake-ruby is not configured')
|
48
|
+
expect { task.invoke }
|
49
|
+
.to raise_error(Airbrake::Error, 'airbrake-ruby is not configured')
|
50
50
|
end
|
51
51
|
end
|
52
52
|
end
|
data/spec/unit/shoryuken_spec.rb
CHANGED
@@ -53,21 +53,4 @@ RSpec.describe Airbrake::Shoryuken::ErrorHandler do
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
end
|
56
|
-
|
57
|
-
context 'when Airbrake is not configured' do
|
58
|
-
before do
|
59
|
-
@notifiers = Airbrake.notifiers[:notice]
|
60
|
-
@default_notifier = @notifiers.delete(:default)
|
61
|
-
end
|
62
|
-
|
63
|
-
after do
|
64
|
-
@notifiers[:default] = @default_notifier
|
65
|
-
end
|
66
|
-
|
67
|
-
it "raises error" do
|
68
|
-
expect do
|
69
|
-
subject.call(worker, queue, nil, body) { raise error }
|
70
|
-
end.to raise_error(error)
|
71
|
-
end
|
72
|
-
end
|
73
56
|
end
|
@@ -8,7 +8,7 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.2')
|
|
8
8
|
RSpec.describe "airbrake/sidekiq/retryable_jobs_filter" do
|
9
9
|
subject(:filter) { Airbrake::Sidekiq::RetryableJobsFilter.new }
|
10
10
|
def build_notice(job = nil)
|
11
|
-
Airbrake::Notice.new(
|
11
|
+
Airbrake::Notice.new(StandardError.new, job: job)
|
12
12
|
end
|
13
13
|
|
14
14
|
it "does not ignore notices that are not from jobs" do
|
data/spec/unit/sidekiq_spec.rb
CHANGED
@@ -31,20 +31,5 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.2')
|
|
31
31
|
wait_for_a_request_with_body(/"params":{.*"args":\["bango","bongo"\]/)
|
32
32
|
wait_for_a_request_with_body(/"component":"sidekiq","action":"HardSidekiqWorker"/)
|
33
33
|
end
|
34
|
-
|
35
|
-
context "when Airbrake is not configured" do
|
36
|
-
before do
|
37
|
-
@notifiers = Airbrake.notifiers[:notice]
|
38
|
-
@default_notifier = @notifiers.delete(:default)
|
39
|
-
end
|
40
|
-
|
41
|
-
after do
|
42
|
-
@notifiers[:default] = @default_notifier
|
43
|
-
end
|
44
|
-
|
45
|
-
it "returns nil" do
|
46
|
-
expect(call_handler).to be_nil
|
47
|
-
end
|
48
|
-
end
|
49
34
|
end
|
50
35
|
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: 8.
|
4
|
+
version: 8.2.0
|
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: 2019-
|
11
|
+
date: 2019-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: airbrake-ruby
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '4.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '4.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rspec
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -212,6 +212,20 @@ dependencies:
|
|
212
212
|
- - '='
|
213
213
|
- !ruby/object:Gem::Version
|
214
214
|
version: 1.9.1
|
215
|
+
- !ruby/object:Gem::Dependency
|
216
|
+
name: parallel
|
217
|
+
requirement: !ruby/object:Gem::Requirement
|
218
|
+
requirements:
|
219
|
+
- - '='
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: 1.13.0
|
222
|
+
type: :development
|
223
|
+
prerelease: false
|
224
|
+
version_requirements: !ruby/object:Gem::Requirement
|
225
|
+
requirements:
|
226
|
+
- - '='
|
227
|
+
- !ruby/object:Gem::Version
|
228
|
+
version: 1.13.0
|
215
229
|
- !ruby/object:Gem::Dependency
|
216
230
|
name: sidekiq
|
217
231
|
requirement: !ruby/object:Gem::Requirement
|
@@ -281,10 +295,7 @@ files:
|
|
281
295
|
- spec/apps/rails/dummy_task.rake
|
282
296
|
- spec/apps/rails/logs/32.log
|
283
297
|
- spec/apps/rails/logs/42.log
|
284
|
-
- spec/apps/rails/logs/51.log
|
285
298
|
- spec/apps/rails/logs/52.log
|
286
|
-
- spec/apps/sinatra/composite_app/sinatra_app1.rb
|
287
|
-
- spec/apps/sinatra/composite_app/sinatra_app2.rb
|
288
299
|
- spec/apps/sinatra/dummy_app.rb
|
289
300
|
- spec/integration/rack/rack_spec.rb
|
290
301
|
- spec/integration/rails/rails_spec.rb
|
@@ -292,6 +303,7 @@ files:
|
|
292
303
|
- spec/integration/shared_examples/rack_examples.rb
|
293
304
|
- spec/integration/sinatra/sinatra_spec.rb
|
294
305
|
- spec/spec_helper.rb
|
306
|
+
- spec/support/matchers/a_notice_with.rb
|
295
307
|
- spec/unit/logger_spec.rb
|
296
308
|
- spec/unit/rack/context_filter_spec.rb
|
297
309
|
- spec/unit/rack/http_headers_filter_spec.rb
|
@@ -356,13 +368,11 @@ test_files:
|
|
356
368
|
- spec/integration/shared_examples/rack_examples.rb
|
357
369
|
- spec/integration/rails/rake_spec.rb
|
358
370
|
- spec/integration/rails/rails_spec.rb
|
371
|
+
- spec/support/matchers/a_notice_with.rb
|
359
372
|
- spec/apps/sinatra/dummy_app.rb
|
360
|
-
- spec/apps/sinatra/composite_app/sinatra_app1.rb
|
361
|
-
- spec/apps/sinatra/composite_app/sinatra_app2.rb
|
362
373
|
- spec/apps/rack/dummy_app.rb
|
363
374
|
- spec/apps/rails/dummy_task.rake
|
364
375
|
- spec/apps/rails/dummy_app.rb
|
365
376
|
- spec/apps/rails/logs/42.log
|
366
|
-
- spec/apps/rails/logs/51.log
|
367
377
|
- spec/apps/rails/logs/52.log
|
368
378
|
- spec/apps/rails/logs/32.log
|
data/spec/apps/rails/logs/51.log
DELETED
@@ -1,3166 +0,0 @@
|
|
1
|
-
# Logfile created on 2018-11-16 20:36:56 +0800 by logger.rb/56815
|
2
|
-
D, [2018-11-16T20:36:57.317868 #20778] DEBUG -- : [1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3
|
-
D, [2018-11-16T20:36:57.318272 #20778] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
4
|
-
D, [2018-11-16T20:36:57.321672 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
5
|
-
D, [2018-11-16T20:36:57.322244 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
6
|
-
D, [2018-11-16T20:36:57.322683 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
7
|
-
D, [2018-11-16T20:36:57.324467 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
8
|
-
D, [2018-11-16T20:36:57.337680 #20778] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
9
|
-
D, [2018-11-16T20:36:57.341775 #20778] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10
|
-
D, [2018-11-16T20:36:57.342909 #20778] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:36:57.342142"], ["updated_at", "2018-11-16 12:36:57.342142"]]
|
11
|
-
D, [2018-11-16T20:36:57.343151 #20778] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
12
|
-
I, [2018-11-16T20:36:57.385288 #20778] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:36:57 +0800
|
13
|
-
I, [2018-11-16T20:36:57.387105 #20778] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
14
|
-
D, [2018-11-16T20:36:57.387383 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
15
|
-
D, [2018-11-16T20:36:57.390340 #20778] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
16
|
-
D, [2018-11-16T20:36:57.390576 #20778] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
17
|
-
I, [2018-11-16T20:36:57.404156 #20778] INFO -- : Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.5ms)
|
18
|
-
F, [2018-11-16T20:36:57.426543 #20778] FATAL -- :
|
19
|
-
F, [2018-11-16T20:36:57.433551 #20778] FATAL -- : AirbrakeTestError (after_rollback):
|
20
|
-
F, [2018-11-16T20:36:57.433591 #20778] FATAL -- :
|
21
|
-
F, [2018-11-16T20:36:57.433617 #20778] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
22
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
23
|
-
I, [2018-11-16T20:36:59.442186 #20778] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-16 20:36:59 +0800
|
24
|
-
I, [2018-11-16T20:36:59.443259 #20778] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
25
|
-
D, [2018-11-16T20:36:59.443789 #20778] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
26
|
-
D, [2018-11-16T20:36:59.444387 #20778] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
27
|
-
D, [2018-11-16T20:36:59.444683 #20778] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
28
|
-
I, [2018-11-16T20:36:59.450126 #20778] INFO -- : Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms)
|
29
|
-
F, [2018-11-16T20:36:59.455564 #20778] FATAL -- :
|
30
|
-
F, [2018-11-16T20:36:59.464595 #20778] FATAL -- : AirbrakeTestError (after_commit):
|
31
|
-
F, [2018-11-16T20:36:59.464691 #20778] FATAL -- :
|
32
|
-
F, [2018-11-16T20:36:59.464741 #20778] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
33
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
34
|
-
I, [2018-11-16T20:37:01.474358 #20778] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:37:01 +0800
|
35
|
-
I, [2018-11-16T20:37:01.475423 #20778] INFO -- : Processing by DummyController#resque as HTML
|
36
|
-
I, [2018-11-16T20:37:01.491993 #20778] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
37
|
-
I, [2018-11-16T20:37:01.492962 #20778] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.9ms)
|
38
|
-
I, [2018-11-16T20:37:01.493381 #20778] INFO -- : Completed 200 OK in 18ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
39
|
-
I, [2018-11-16T20:37:01.495912 #20778] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:37:01 +0800
|
40
|
-
I, [2018-11-16T20:37:01.496577 #20778] INFO -- : Processing by DummyController#resque as HTML
|
41
|
-
I, [2018-11-16T20:37:01.497614 #20778] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
42
|
-
I, [2018-11-16T20:37:01.497821 #20778] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
43
|
-
I, [2018-11-16T20:37:01.498059 #20778] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
44
|
-
I, [2018-11-16T20:37:01.499585 #20778] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:37:01 +0800
|
45
|
-
I, [2018-11-16T20:37:01.500181 #20778] INFO -- : Processing by DummyController#active_job as HTML
|
46
|
-
I, [2018-11-16T20:37:01.501012 #20778] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
47
|
-
I, [2018-11-16T20:37:01.501817 #20778] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
48
|
-
I, [2018-11-16T20:37:01.502071 #20778] INFO -- : Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
49
|
-
I, [2018-11-16T20:37:03.509195 #20778] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:37:03 +0800
|
50
|
-
I, [2018-11-16T20:37:03.510116 #20778] INFO -- : Processing by DummyController#active_job as HTML
|
51
|
-
I, [2018-11-16T20:37:03.511191 #20778] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
52
|
-
I, [2018-11-16T20:37:03.511538 #20778] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
53
|
-
I, [2018-11-16T20:37:03.511880 #20778] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
54
|
-
I, [2018-11-16T20:37:05.518330 #20778] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:37:05 +0800
|
55
|
-
I, [2018-11-16T20:37:05.519355 #20778] INFO -- : Processing by DummyController#active_job as HTML
|
56
|
-
I, [2018-11-16T20:37:05.520379 #20778] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
57
|
-
I, [2018-11-16T20:37:05.520725 #20778] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
58
|
-
I, [2018-11-16T20:37:05.521455 #20778] INFO -- : Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
59
|
-
I, [2018-11-16T20:37:07.529028 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
60
|
-
I, [2018-11-16T20:37:07.530510 #20778] INFO -- : Processing by DummyController#crash as HTML
|
61
|
-
I, [2018-11-16T20:37:07.530870 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
62
|
-
F, [2018-11-16T20:37:07.537286 #20778] FATAL -- :
|
63
|
-
F, [2018-11-16T20:37:07.542458 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
64
|
-
F, [2018-11-16T20:37:07.542507 #20778] FATAL -- :
|
65
|
-
F, [2018-11-16T20:37:07.542531 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
66
|
-
I, [2018-11-16T20:37:07.544704 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
67
|
-
I, [2018-11-16T20:37:07.545546 #20778] INFO -- : Processing by DummyController#crash as HTML
|
68
|
-
I, [2018-11-16T20:37:07.545803 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
69
|
-
F, [2018-11-16T20:37:07.550341 #20778] FATAL -- :
|
70
|
-
F, [2018-11-16T20:37:07.550380 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
71
|
-
F, [2018-11-16T20:37:07.550410 #20778] FATAL -- :
|
72
|
-
F, [2018-11-16T20:37:07.554770 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
73
|
-
I, [2018-11-16T20:37:07.557209 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
74
|
-
I, [2018-11-16T20:37:07.557978 #20778] INFO -- : Processing by DummyController#crash as HTML
|
75
|
-
I, [2018-11-16T20:37:07.558281 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
76
|
-
F, [2018-11-16T20:37:07.563448 #20778] FATAL -- :
|
77
|
-
F, [2018-11-16T20:37:07.563489 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
78
|
-
F, [2018-11-16T20:37:07.563514 #20778] FATAL -- :
|
79
|
-
F, [2018-11-16T20:37:07.563536 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
80
|
-
I, [2018-11-16T20:37:07.687283 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
81
|
-
I, [2018-11-16T20:37:07.688253 #20778] INFO -- : Processing by DummyController#crash as HTML
|
82
|
-
I, [2018-11-16T20:37:07.688670 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
83
|
-
F, [2018-11-16T20:37:07.694607 #20778] FATAL -- :
|
84
|
-
F, [2018-11-16T20:37:07.698929 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
85
|
-
F, [2018-11-16T20:37:07.698972 #20778] FATAL -- :
|
86
|
-
F, [2018-11-16T20:37:07.698994 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
87
|
-
I, [2018-11-16T20:37:07.701398 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
88
|
-
I, [2018-11-16T20:37:07.702168 #20778] INFO -- : Processing by DummyController#crash as HTML
|
89
|
-
I, [2018-11-16T20:37:07.702479 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
90
|
-
F, [2018-11-16T20:37:07.708335 #20778] FATAL -- :
|
91
|
-
F, [2018-11-16T20:37:07.712214 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
92
|
-
F, [2018-11-16T20:37:07.712256 #20778] FATAL -- :
|
93
|
-
F, [2018-11-16T20:37:07.712280 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
94
|
-
I, [2018-11-16T20:37:07.714200 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
95
|
-
I, [2018-11-16T20:37:07.714891 #20778] INFO -- : Processing by DummyController#crash as HTML
|
96
|
-
I, [2018-11-16T20:37:07.715168 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
97
|
-
F, [2018-11-16T20:37:07.719985 #20778] FATAL -- :
|
98
|
-
F, [2018-11-16T20:37:07.724186 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
99
|
-
F, [2018-11-16T20:37:07.724219 #20778] FATAL -- :
|
100
|
-
F, [2018-11-16T20:37:07.724241 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
101
|
-
I, [2018-11-16T20:37:07.725806 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
102
|
-
I, [2018-11-16T20:37:07.726369 #20778] INFO -- : Processing by DummyController#crash as HTML
|
103
|
-
I, [2018-11-16T20:37:07.726626 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
104
|
-
F, [2018-11-16T20:37:07.731311 #20778] FATAL -- :
|
105
|
-
F, [2018-11-16T20:37:07.731346 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
106
|
-
F, [2018-11-16T20:37:07.731369 #20778] FATAL -- :
|
107
|
-
F, [2018-11-16T20:37:07.738465 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
108
|
-
I, [2018-11-16T20:37:07.741403 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
109
|
-
I, [2018-11-16T20:37:07.742316 #20778] INFO -- : Processing by DummyController#crash as HTML
|
110
|
-
I, [2018-11-16T20:37:07.742729 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
111
|
-
F, [2018-11-16T20:37:07.747606 #20778] FATAL -- :
|
112
|
-
F, [2018-11-16T20:37:07.751548 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
113
|
-
F, [2018-11-16T20:37:07.751575 #20778] FATAL -- :
|
114
|
-
F, [2018-11-16T20:37:07.751597 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
115
|
-
I, [2018-11-16T20:37:07.754568 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:07 +0800
|
116
|
-
I, [2018-11-16T20:37:07.755308 #20778] INFO -- : Processing by DummyController#crash as HTML
|
117
|
-
I, [2018-11-16T20:37:07.755547 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
118
|
-
F, [2018-11-16T20:37:07.759769 #20778] FATAL -- :
|
119
|
-
F, [2018-11-16T20:37:07.759820 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
120
|
-
F, [2018-11-16T20:37:07.759846 #20778] FATAL -- :
|
121
|
-
F, [2018-11-16T20:37:07.763420 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
122
|
-
I, [2018-11-16T20:37:09.768185 #20778] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-16 20:37:09 +0800
|
123
|
-
I, [2018-11-16T20:37:09.769132 #20778] INFO -- : Processing by DummyController#index as HTML
|
124
|
-
I, [2018-11-16T20:37:09.769967 #20778] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
125
|
-
I, [2018-11-16T20:37:09.770315 #20778] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
126
|
-
I, [2018-11-16T20:37:09.770650 #20778] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
127
|
-
I, [2018-11-16T20:37:09.772718 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:09 +0800
|
128
|
-
I, [2018-11-16T20:37:09.773606 #20778] INFO -- : Processing by DummyController#crash as HTML
|
129
|
-
I, [2018-11-16T20:37:09.773914 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
130
|
-
F, [2018-11-16T20:37:09.778017 #20778] FATAL -- :
|
131
|
-
F, [2018-11-16T20:37:09.778053 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
132
|
-
F, [2018-11-16T20:37:09.778077 #20778] FATAL -- :
|
133
|
-
F, [2018-11-16T20:37:09.782249 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
134
|
-
I, [2018-11-16T20:37:09.784235 #20778] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:37:09 +0800
|
135
|
-
I, [2018-11-16T20:37:09.784960 #20778] INFO -- : Processing by DummyController#delayed_job as HTML
|
136
|
-
I, [2018-11-16T20:37:09.801140 #20778] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.3ms)
|
137
|
-
F, [2018-11-16T20:37:09.811757 #20778] FATAL -- :
|
138
|
-
F, [2018-11-16T20:37:09.815553 #20778] FATAL -- : AirbrakeTestError (delayed_job error):
|
139
|
-
F, [2018-11-16T20:37:09.815613 #20778] FATAL -- :
|
140
|
-
F, [2018-11-16T20:37:09.815650 #20778] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
141
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
142
|
-
I, [2018-11-16T20:37:13.826458 #20778] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:37:13 +0800
|
143
|
-
I, [2018-11-16T20:37:13.828162 #20778] INFO -- : Processing by DummyController#delayed_job as HTML
|
144
|
-
I, [2018-11-16T20:37:13.829345 #20778] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
145
|
-
F, [2018-11-16T20:37:13.830868 #20778] FATAL -- :
|
146
|
-
F, [2018-11-16T20:37:13.830950 #20778] FATAL -- : AirbrakeTestError (delayed_job error):
|
147
|
-
F, [2018-11-16T20:37:13.830996 #20778] FATAL -- :
|
148
|
-
F, [2018-11-16T20:37:13.831023 #20778] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
149
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
150
|
-
I, [2018-11-16T20:37:15.837275 #20778] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:37:15 +0800
|
151
|
-
I, [2018-11-16T20:37:15.838644 #20778] INFO -- : Processing by DummyController#crash as HTML
|
152
|
-
I, [2018-11-16T20:37:15.839007 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
153
|
-
F, [2018-11-16T20:37:15.846582 #20778] FATAL -- :
|
154
|
-
F, [2018-11-16T20:37:15.850740 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
155
|
-
F, [2018-11-16T20:37:15.850780 #20778] FATAL -- :
|
156
|
-
F, [2018-11-16T20:37:15.850805 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
157
|
-
I, [2018-11-16T20:37:15.853539 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:15 +0800
|
158
|
-
I, [2018-11-16T20:37:15.854555 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
159
|
-
I, [2018-11-16T20:37:15.854596 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
160
|
-
I, [2018-11-16T20:37:15.860720 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
161
|
-
I, [2018-11-16T20:37:15.865532 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
162
|
-
I, [2018-11-16T20:37:15.865839 #20778] INFO -- : Completed 200 OK in 11ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
163
|
-
I, [2018-11-16T20:37:15.868080 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:15 +0800
|
164
|
-
I, [2018-11-16T20:37:15.868771 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
165
|
-
I, [2018-11-16T20:37:15.868809 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
166
|
-
I, [2018-11-16T20:37:15.873695 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
167
|
-
I, [2018-11-16T20:37:15.873982 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
168
|
-
I, [2018-11-16T20:37:15.874282 #20778] INFO -- : Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
169
|
-
I, [2018-11-16T20:37:15.980118 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:15 +0800
|
170
|
-
I, [2018-11-16T20:37:15.981250 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
171
|
-
I, [2018-11-16T20:37:15.981304 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
172
|
-
I, [2018-11-16T20:37:15.991427 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
173
|
-
I, [2018-11-16T20:37:15.991697 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
174
|
-
I, [2018-11-16T20:37:15.991957 #20778] INFO -- : Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
175
|
-
I, [2018-11-16T20:37:15.994412 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:15 +0800
|
176
|
-
I, [2018-11-16T20:37:15.995429 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
177
|
-
I, [2018-11-16T20:37:15.995519 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
178
|
-
I, [2018-11-16T20:37:16.000325 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
179
|
-
I, [2018-11-16T20:37:16.004666 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
180
|
-
I, [2018-11-16T20:37:16.004945 #20778] INFO -- : Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
181
|
-
I, [2018-11-16T20:37:16.007179 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
182
|
-
I, [2018-11-16T20:37:16.007997 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
183
|
-
I, [2018-11-16T20:37:16.008035 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
184
|
-
I, [2018-11-16T20:37:16.013429 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
185
|
-
I, [2018-11-16T20:37:16.018078 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
186
|
-
I, [2018-11-16T20:37:16.018362 #20778] INFO -- : Completed 200 OK in 10ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
187
|
-
I, [2018-11-16T20:37:16.020604 #20778] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
188
|
-
I, [2018-11-16T20:37:16.021415 #20778] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
189
|
-
I, [2018-11-16T20:37:16.021452 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
190
|
-
I, [2018-11-16T20:37:16.026035 #20778] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
191
|
-
I, [2018-11-16T20:37:16.033385 #20778] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
192
|
-
I, [2018-11-16T20:37:16.033692 #20778] INFO -- : Completed 200 OK in 12ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
193
|
-
I, [2018-11-16T20:37:16.036063 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
194
|
-
I, [2018-11-16T20:37:16.036903 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
195
|
-
I, [2018-11-16T20:37:16.036940 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
196
|
-
I, [2018-11-16T20:37:16.045990 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
197
|
-
I, [2018-11-16T20:37:16.046284 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
198
|
-
I, [2018-11-16T20:37:16.046569 #20778] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
199
|
-
I, [2018-11-16T20:37:16.048952 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
200
|
-
I, [2018-11-16T20:37:16.049845 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
201
|
-
I, [2018-11-16T20:37:16.049883 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
202
|
-
I, [2018-11-16T20:37:16.058081 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
203
|
-
I, [2018-11-16T20:37:16.058352 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
204
|
-
I, [2018-11-16T20:37:16.058606 #20778] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
205
|
-
I, [2018-11-16T20:37:16.061120 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
206
|
-
I, [2018-11-16T20:37:16.062201 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
207
|
-
I, [2018-11-16T20:37:16.062256 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
208
|
-
I, [2018-11-16T20:37:16.071420 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
209
|
-
I, [2018-11-16T20:37:16.071701 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
210
|
-
I, [2018-11-16T20:37:16.071967 #20778] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
211
|
-
I, [2018-11-16T20:37:16.074231 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
212
|
-
I, [2018-11-16T20:37:16.075070 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
213
|
-
I, [2018-11-16T20:37:16.075107 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
214
|
-
I, [2018-11-16T20:37:16.084456 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
215
|
-
I, [2018-11-16T20:37:16.084751 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
216
|
-
I, [2018-11-16T20:37:16.085027 #20778] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
217
|
-
I, [2018-11-16T20:37:16.087499 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
218
|
-
I, [2018-11-16T20:37:16.088367 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
219
|
-
I, [2018-11-16T20:37:16.088406 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
220
|
-
I, [2018-11-16T20:37:16.099320 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
221
|
-
I, [2018-11-16T20:37:16.099621 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
222
|
-
I, [2018-11-16T20:37:16.099892 #20778] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
223
|
-
I, [2018-11-16T20:37:16.102505 #20778] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
224
|
-
I, [2018-11-16T20:37:16.103413 #20778] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
225
|
-
I, [2018-11-16T20:37:16.103452 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
226
|
-
I, [2018-11-16T20:37:16.112247 #20778] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
227
|
-
I, [2018-11-16T20:37:16.112569 #20778] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
228
|
-
I, [2018-11-16T20:37:16.112847 #20778] INFO -- : Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
229
|
-
I, [2018-11-16T20:37:16.115379 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
230
|
-
I, [2018-11-16T20:37:16.116189 #20778] INFO -- : Processing by DummyController#crash as HTML
|
231
|
-
I, [2018-11-16T20:37:16.116225 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
232
|
-
I, [2018-11-16T20:37:16.116489 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
233
|
-
F, [2018-11-16T20:37:16.121173 #20778] FATAL -- :
|
234
|
-
F, [2018-11-16T20:37:16.121209 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
235
|
-
F, [2018-11-16T20:37:16.121234 #20778] FATAL -- :
|
236
|
-
F, [2018-11-16T20:37:16.124871 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
237
|
-
I, [2018-11-16T20:37:16.127114 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
238
|
-
I, [2018-11-16T20:37:16.128220 #20778] INFO -- : Processing by DummyController#crash as HTML
|
239
|
-
I, [2018-11-16T20:37:16.128277 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
240
|
-
I, [2018-11-16T20:37:16.128574 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
241
|
-
F, [2018-11-16T20:37:16.133298 #20778] FATAL -- :
|
242
|
-
F, [2018-11-16T20:37:16.137385 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
243
|
-
F, [2018-11-16T20:37:16.137422 #20778] FATAL -- :
|
244
|
-
F, [2018-11-16T20:37:16.137445 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
245
|
-
I, [2018-11-16T20:37:16.139415 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
246
|
-
I, [2018-11-16T20:37:16.140283 #20778] INFO -- : Processing by DummyController#crash as HTML
|
247
|
-
I, [2018-11-16T20:37:16.140319 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
248
|
-
I, [2018-11-16T20:37:16.140575 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
249
|
-
F, [2018-11-16T20:37:16.147537 #20778] FATAL -- :
|
250
|
-
F, [2018-11-16T20:37:16.151396 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
251
|
-
F, [2018-11-16T20:37:16.151438 #20778] FATAL -- :
|
252
|
-
F, [2018-11-16T20:37:16.151462 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
253
|
-
I, [2018-11-16T20:37:16.153512 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
254
|
-
I, [2018-11-16T20:37:16.154361 #20778] INFO -- : Processing by DummyController#crash as HTML
|
255
|
-
I, [2018-11-16T20:37:16.154399 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
256
|
-
I, [2018-11-16T20:37:16.154661 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
257
|
-
F, [2018-11-16T20:37:16.159066 #20778] FATAL -- :
|
258
|
-
F, [2018-11-16T20:37:16.163532 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
259
|
-
F, [2018-11-16T20:37:16.163580 #20778] FATAL -- :
|
260
|
-
F, [2018-11-16T20:37:16.163605 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
261
|
-
I, [2018-11-16T20:37:16.165657 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
262
|
-
I, [2018-11-16T20:37:16.166533 #20778] INFO -- : Processing by DummyController#crash as HTML
|
263
|
-
I, [2018-11-16T20:37:16.166569 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
264
|
-
I, [2018-11-16T20:37:16.166835 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
265
|
-
F, [2018-11-16T20:37:16.171702 #20778] FATAL -- :
|
266
|
-
F, [2018-11-16T20:37:16.175723 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
267
|
-
F, [2018-11-16T20:37:16.175753 #20778] FATAL -- :
|
268
|
-
F, [2018-11-16T20:37:16.175777 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
269
|
-
I, [2018-11-16T20:37:16.177914 #20778] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:37:16 +0800
|
270
|
-
I, [2018-11-16T20:37:16.178991 #20778] INFO -- : Processing by DummyController#crash as HTML
|
271
|
-
I, [2018-11-16T20:37:16.179042 #20778] INFO -- : Parameters: {"foo"=>"bar"}
|
272
|
-
I, [2018-11-16T20:37:16.179312 #20778] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
273
|
-
F, [2018-11-16T20:37:16.184267 #20778] FATAL -- :
|
274
|
-
F, [2018-11-16T20:37:16.188965 #20778] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
275
|
-
F, [2018-11-16T20:37:16.189036 #20778] FATAL -- :
|
276
|
-
F, [2018-11-16T20:37:16.189091 #20778] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
277
|
-
D, [2018-11-16T20:41:54.598581 #20847] DEBUG -- : [1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
278
|
-
D, [2018-11-16T20:41:54.599451 #20847] DEBUG -- : [1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
279
|
-
D, [2018-11-16T20:41:54.602841 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
280
|
-
D, [2018-11-16T20:41:54.603414 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
281
|
-
D, [2018-11-16T20:41:54.603943 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
282
|
-
D, [2018-11-16T20:41:54.605696 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
283
|
-
D, [2018-11-16T20:41:54.616310 #20847] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
284
|
-
D, [2018-11-16T20:41:54.619353 #20847] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
285
|
-
D, [2018-11-16T20:41:54.620195 #20847] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:41:54.619607"], ["updated_at", "2018-11-16 12:41:54.619607"]]
|
286
|
-
D, [2018-11-16T20:41:54.620384 #20847] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
287
|
-
I, [2018-11-16T20:41:54.662935 #20847] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:41:54 +0800
|
288
|
-
I, [2018-11-16T20:41:54.664888 #20847] INFO -- : Processing by DummyController#active_job as HTML
|
289
|
-
I, [2018-11-16T20:41:54.671562 #20847] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
290
|
-
I, [2018-11-16T20:41:54.678693 #20847] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (6.6ms)
|
291
|
-
I, [2018-11-16T20:41:54.681925 #20847] INFO -- : Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.0ms)
|
292
|
-
I, [2018-11-16T20:41:56.687291 #20847] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:41:56 +0800
|
293
|
-
I, [2018-11-16T20:41:56.688267 #20847] INFO -- : Processing by DummyController#active_job as HTML
|
294
|
-
I, [2018-11-16T20:41:56.689384 #20847] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
295
|
-
I, [2018-11-16T20:41:56.689743 #20847] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
296
|
-
I, [2018-11-16T20:41:56.690131 #20847] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
297
|
-
I, [2018-11-16T20:41:58.695578 #20847] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:41:58 +0800
|
298
|
-
I, [2018-11-16T20:41:58.696553 #20847] INFO -- : Processing by DummyController#active_job as HTML
|
299
|
-
I, [2018-11-16T20:41:58.697683 #20847] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
300
|
-
I, [2018-11-16T20:41:58.698050 #20847] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
301
|
-
I, [2018-11-16T20:41:58.698411 #20847] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
302
|
-
I, [2018-11-16T20:42:00.706213 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:00 +0800
|
303
|
-
I, [2018-11-16T20:42:00.707281 #20847] INFO -- : Processing by DummyController#crash as HTML
|
304
|
-
I, [2018-11-16T20:42:00.707659 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
305
|
-
F, [2018-11-16T20:42:00.718926 #20847] FATAL -- :
|
306
|
-
F, [2018-11-16T20:42:00.723036 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
307
|
-
F, [2018-11-16T20:42:00.723092 #20847] FATAL -- :
|
308
|
-
F, [2018-11-16T20:42:00.723141 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
309
|
-
I, [2018-11-16T20:42:02.729932 #20847] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:42:02 +0800
|
310
|
-
I, [2018-11-16T20:42:02.730943 #20847] INFO -- : Processing by DummyController#delayed_job as HTML
|
311
|
-
I, [2018-11-16T20:42:02.746490 #20847] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.6ms)
|
312
|
-
F, [2018-11-16T20:42:02.755973 #20847] FATAL -- :
|
313
|
-
F, [2018-11-16T20:42:02.759750 #20847] FATAL -- : AirbrakeTestError (delayed_job error):
|
314
|
-
F, [2018-11-16T20:42:02.759796 #20847] FATAL -- :
|
315
|
-
F, [2018-11-16T20:42:02.759819 #20847] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
316
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
317
|
-
I, [2018-11-16T20:42:06.771856 #20847] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:42:06 +0800
|
318
|
-
I, [2018-11-16T20:42:06.773130 #20847] INFO -- : Processing by DummyController#delayed_job as HTML
|
319
|
-
I, [2018-11-16T20:42:06.774064 #20847] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
320
|
-
F, [2018-11-16T20:42:06.775373 #20847] FATAL -- :
|
321
|
-
F, [2018-11-16T20:42:06.775419 #20847] FATAL -- : AirbrakeTestError (delayed_job error):
|
322
|
-
F, [2018-11-16T20:42:06.775449 #20847] FATAL -- :
|
323
|
-
F, [2018-11-16T20:42:06.775480 #20847] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
324
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
325
|
-
I, [2018-11-16T20:42:08.778634 #20847] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
326
|
-
I, [2018-11-16T20:42:08.779975 #20847] INFO -- : Processing by DummyController#resque as HTML
|
327
|
-
I, [2018-11-16T20:42:08.793662 #20847] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
328
|
-
I, [2018-11-16T20:42:08.793984 #20847] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
329
|
-
I, [2018-11-16T20:42:08.794269 #20847] INFO -- : Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
330
|
-
I, [2018-11-16T20:42:08.796687 #20847] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
331
|
-
I, [2018-11-16T20:42:08.797411 #20847] INFO -- : Processing by DummyController#resque as HTML
|
332
|
-
I, [2018-11-16T20:42:08.798337 #20847] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
333
|
-
I, [2018-11-16T20:42:08.798556 #20847] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
334
|
-
I, [2018-11-16T20:42:08.798797 #20847] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
335
|
-
I, [2018-11-16T20:42:08.800766 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
336
|
-
I, [2018-11-16T20:42:08.801854 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
337
|
-
I, [2018-11-16T20:42:08.801940 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
338
|
-
I, [2018-11-16T20:42:08.807128 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
339
|
-
I, [2018-11-16T20:42:08.811170 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
340
|
-
I, [2018-11-16T20:42:08.811502 #20847] INFO -- : Completed 200 OK in 9ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
341
|
-
I, [2018-11-16T20:42:08.814173 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
342
|
-
I, [2018-11-16T20:42:08.815013 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
343
|
-
I, [2018-11-16T20:42:08.815050 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
344
|
-
I, [2018-11-16T20:42:08.820356 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
345
|
-
I, [2018-11-16T20:42:08.824893 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
346
|
-
I, [2018-11-16T20:42:08.825233 #20847] INFO -- : Completed 200 OK in 10ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
347
|
-
I, [2018-11-16T20:42:08.827717 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
348
|
-
I, [2018-11-16T20:42:08.828539 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
349
|
-
I, [2018-11-16T20:42:08.828576 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
350
|
-
I, [2018-11-16T20:42:08.833103 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
351
|
-
I, [2018-11-16T20:42:08.838107 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
352
|
-
I, [2018-11-16T20:42:08.838450 #20847] INFO -- : Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
353
|
-
I, [2018-11-16T20:42:08.841036 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
354
|
-
I, [2018-11-16T20:42:08.841973 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
355
|
-
I, [2018-11-16T20:42:08.842015 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
356
|
-
I, [2018-11-16T20:42:08.847337 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
357
|
-
I, [2018-11-16T20:42:08.855049 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
358
|
-
I, [2018-11-16T20:42:08.855354 #20847] INFO -- : Completed 200 OK in 13ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
359
|
-
I, [2018-11-16T20:42:08.857665 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
360
|
-
I, [2018-11-16T20:42:08.858457 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
361
|
-
I, [2018-11-16T20:42:08.858494 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
362
|
-
I, [2018-11-16T20:42:08.863274 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
363
|
-
I, [2018-11-16T20:42:08.863517 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
364
|
-
I, [2018-11-16T20:42:08.863798 #20847] INFO -- : Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
365
|
-
I, [2018-11-16T20:42:08.984725 #20847] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:08 +0800
|
366
|
-
I, [2018-11-16T20:42:08.986123 #20847] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
367
|
-
I, [2018-11-16T20:42:08.986177 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
368
|
-
I, [2018-11-16T20:42:08.996862 #20847] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
369
|
-
I, [2018-11-16T20:42:08.997160 #20847] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
370
|
-
I, [2018-11-16T20:42:08.997476 #20847] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
371
|
-
I, [2018-11-16T20:42:09.000342 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
372
|
-
I, [2018-11-16T20:42:09.001458 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
373
|
-
I, [2018-11-16T20:42:09.001507 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
374
|
-
I, [2018-11-16T20:42:09.010159 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
375
|
-
I, [2018-11-16T20:42:09.010475 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
376
|
-
I, [2018-11-16T20:42:09.010767 #20847] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
377
|
-
I, [2018-11-16T20:42:09.013410 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
378
|
-
I, [2018-11-16T20:42:09.014267 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
379
|
-
I, [2018-11-16T20:42:09.014303 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
380
|
-
I, [2018-11-16T20:42:09.025885 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
381
|
-
I, [2018-11-16T20:42:09.026179 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
382
|
-
I, [2018-11-16T20:42:09.026475 #20847] INFO -- : Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
383
|
-
I, [2018-11-16T20:42:09.028963 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
384
|
-
I, [2018-11-16T20:42:09.029839 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
385
|
-
I, [2018-11-16T20:42:09.029891 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
386
|
-
I, [2018-11-16T20:42:09.038922 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
387
|
-
I, [2018-11-16T20:42:09.039213 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
388
|
-
I, [2018-11-16T20:42:09.039472 #20847] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
389
|
-
I, [2018-11-16T20:42:09.041725 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
390
|
-
I, [2018-11-16T20:42:09.042525 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
391
|
-
I, [2018-11-16T20:42:09.042563 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
392
|
-
I, [2018-11-16T20:42:09.052411 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
393
|
-
I, [2018-11-16T20:42:09.052710 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
394
|
-
I, [2018-11-16T20:42:09.052982 #20847] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
395
|
-
I, [2018-11-16T20:42:09.055239 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
396
|
-
I, [2018-11-16T20:42:09.056012 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
397
|
-
I, [2018-11-16T20:42:09.056049 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
398
|
-
I, [2018-11-16T20:42:09.064764 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
399
|
-
I, [2018-11-16T20:42:09.065016 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
400
|
-
I, [2018-11-16T20:42:09.065270 #20847] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
401
|
-
I, [2018-11-16T20:42:09.067792 #20847] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
402
|
-
I, [2018-11-16T20:42:09.068688 #20847] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
403
|
-
I, [2018-11-16T20:42:09.068732 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
404
|
-
I, [2018-11-16T20:42:09.079973 #20847] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
405
|
-
I, [2018-11-16T20:42:09.080259 #20847] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
406
|
-
I, [2018-11-16T20:42:09.080524 #20847] INFO -- : Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
407
|
-
I, [2018-11-16T20:42:09.083004 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
408
|
-
I, [2018-11-16T20:42:09.083915 #20847] INFO -- : Processing by DummyController#crash as HTML
|
409
|
-
I, [2018-11-16T20:42:09.083957 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
410
|
-
I, [2018-11-16T20:42:09.084221 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
411
|
-
F, [2018-11-16T20:42:09.089196 #20847] FATAL -- :
|
412
|
-
F, [2018-11-16T20:42:09.093449 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
413
|
-
F, [2018-11-16T20:42:09.093493 #20847] FATAL -- :
|
414
|
-
F, [2018-11-16T20:42:09.093516 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
415
|
-
I, [2018-11-16T20:42:09.095298 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
416
|
-
I, [2018-11-16T20:42:09.095942 #20847] INFO -- : Processing by DummyController#crash as HTML
|
417
|
-
I, [2018-11-16T20:42:09.095978 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
418
|
-
I, [2018-11-16T20:42:09.096182 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
419
|
-
F, [2018-11-16T20:42:09.105673 #20847] FATAL -- :
|
420
|
-
F, [2018-11-16T20:42:09.105747 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
421
|
-
F, [2018-11-16T20:42:09.105770 #20847] FATAL -- :
|
422
|
-
F, [2018-11-16T20:42:09.105790 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
423
|
-
I, [2018-11-16T20:42:09.107822 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
424
|
-
I, [2018-11-16T20:42:09.108705 #20847] INFO -- : Processing by DummyController#crash as HTML
|
425
|
-
I, [2018-11-16T20:42:09.108741 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
426
|
-
I, [2018-11-16T20:42:09.108994 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
427
|
-
F, [2018-11-16T20:42:09.113571 #20847] FATAL -- :
|
428
|
-
F, [2018-11-16T20:42:09.113607 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
429
|
-
F, [2018-11-16T20:42:09.113667 #20847] FATAL -- :
|
430
|
-
F, [2018-11-16T20:42:09.113690 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
431
|
-
I, [2018-11-16T20:42:09.222180 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
432
|
-
I, [2018-11-16T20:42:09.223480 #20847] INFO -- : Processing by DummyController#crash as HTML
|
433
|
-
I, [2018-11-16T20:42:09.223539 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
434
|
-
I, [2018-11-16T20:42:09.223994 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
435
|
-
F, [2018-11-16T20:42:09.234934 #20847] FATAL -- :
|
436
|
-
F, [2018-11-16T20:42:09.235001 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
437
|
-
F, [2018-11-16T20:42:09.235027 #20847] FATAL -- :
|
438
|
-
F, [2018-11-16T20:42:09.235049 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
439
|
-
I, [2018-11-16T20:42:09.237153 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
440
|
-
I, [2018-11-16T20:42:09.237974 #20847] INFO -- : Processing by DummyController#crash as HTML
|
441
|
-
I, [2018-11-16T20:42:09.238011 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
442
|
-
I, [2018-11-16T20:42:09.238268 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
443
|
-
F, [2018-11-16T20:42:09.244829 #20847] FATAL -- :
|
444
|
-
F, [2018-11-16T20:42:09.250121 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
445
|
-
F, [2018-11-16T20:42:09.250187 #20847] FATAL -- :
|
446
|
-
F, [2018-11-16T20:42:09.250221 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
447
|
-
I, [2018-11-16T20:42:09.252813 #20847] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
448
|
-
I, [2018-11-16T20:42:09.253796 #20847] INFO -- : Processing by DummyController#crash as HTML
|
449
|
-
I, [2018-11-16T20:42:09.253837 #20847] INFO -- : Parameters: {"foo"=>"bar"}
|
450
|
-
I, [2018-11-16T20:42:09.254115 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
451
|
-
F, [2018-11-16T20:42:09.258869 #20847] FATAL -- :
|
452
|
-
F, [2018-11-16T20:42:09.262825 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
453
|
-
F, [2018-11-16T20:42:09.262859 #20847] FATAL -- :
|
454
|
-
F, [2018-11-16T20:42:09.262882 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
455
|
-
I, [2018-11-16T20:42:09.264876 #20847] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-16 20:42:09 +0800
|
456
|
-
I, [2018-11-16T20:42:09.265631 #20847] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
457
|
-
D, [2018-11-16T20:42:09.268215 #20847] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
458
|
-
D, [2018-11-16T20:42:09.268975 #20847] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
459
|
-
D, [2018-11-16T20:42:09.269316 #20847] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
460
|
-
I, [2018-11-16T20:42:09.273796 #20847] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.5ms)
|
461
|
-
F, [2018-11-16T20:42:09.282827 #20847] FATAL -- :
|
462
|
-
F, [2018-11-16T20:42:09.286985 #20847] FATAL -- : AirbrakeTestError (after_commit):
|
463
|
-
F, [2018-11-16T20:42:09.287034 #20847] FATAL -- :
|
464
|
-
F, [2018-11-16T20:42:09.287058 #20847] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
465
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
466
|
-
I, [2018-11-16T20:42:11.291180 #20847] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:42:11 +0800
|
467
|
-
I, [2018-11-16T20:42:11.292265 #20847] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
468
|
-
D, [2018-11-16T20:42:11.292591 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
469
|
-
D, [2018-11-16T20:42:11.293386 #20847] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
470
|
-
D, [2018-11-16T20:42:11.293646 #20847] DEBUG -- : [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
471
|
-
I, [2018-11-16T20:42:11.307568 #20847] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms)
|
472
|
-
F, [2018-11-16T20:42:11.321787 #20847] FATAL -- :
|
473
|
-
F, [2018-11-16T20:42:11.328399 #20847] FATAL -- : AirbrakeTestError (after_rollback):
|
474
|
-
F, [2018-11-16T20:42:11.328436 #20847] FATAL -- :
|
475
|
-
F, [2018-11-16T20:42:11.328460 #20847] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
476
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
477
|
-
I, [2018-11-16T20:42:13.336714 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
478
|
-
I, [2018-11-16T20:42:13.338051 #20847] INFO -- : Processing by DummyController#crash as HTML
|
479
|
-
I, [2018-11-16T20:42:13.338438 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
480
|
-
F, [2018-11-16T20:42:13.344451 #20847] FATAL -- :
|
481
|
-
F, [2018-11-16T20:42:13.348290 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
482
|
-
F, [2018-11-16T20:42:13.348325 #20847] FATAL -- :
|
483
|
-
F, [2018-11-16T20:42:13.348350 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
484
|
-
I, [2018-11-16T20:42:13.350924 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
485
|
-
I, [2018-11-16T20:42:13.351875 #20847] INFO -- : Processing by DummyController#crash as HTML
|
486
|
-
I, [2018-11-16T20:42:13.352341 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
487
|
-
F, [2018-11-16T20:42:13.359836 #20847] FATAL -- :
|
488
|
-
F, [2018-11-16T20:42:13.364302 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
489
|
-
F, [2018-11-16T20:42:13.364348 #20847] FATAL -- :
|
490
|
-
F, [2018-11-16T20:42:13.364372 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
491
|
-
I, [2018-11-16T20:42:13.366482 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
492
|
-
I, [2018-11-16T20:42:13.367336 #20847] INFO -- : Processing by DummyController#crash as HTML
|
493
|
-
I, [2018-11-16T20:42:13.367623 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
494
|
-
F, [2018-11-16T20:42:13.372054 #20847] FATAL -- :
|
495
|
-
F, [2018-11-16T20:42:13.372098 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
496
|
-
F, [2018-11-16T20:42:13.372123 #20847] FATAL -- :
|
497
|
-
F, [2018-11-16T20:42:13.372146 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
498
|
-
I, [2018-11-16T20:42:13.476127 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
499
|
-
I, [2018-11-16T20:42:13.477159 #20847] INFO -- : Processing by DummyController#crash as HTML
|
500
|
-
I, [2018-11-16T20:42:13.477520 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
501
|
-
F, [2018-11-16T20:42:13.487151 #20847] FATAL -- :
|
502
|
-
F, [2018-11-16T20:42:13.487202 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
503
|
-
F, [2018-11-16T20:42:13.487224 #20847] FATAL -- :
|
504
|
-
F, [2018-11-16T20:42:13.487244 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
505
|
-
I, [2018-11-16T20:42:13.489396 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
506
|
-
I, [2018-11-16T20:42:13.490134 #20847] INFO -- : Processing by DummyController#crash as HTML
|
507
|
-
I, [2018-11-16T20:42:13.490439 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
508
|
-
F, [2018-11-16T20:42:13.495217 #20847] FATAL -- :
|
509
|
-
F, [2018-11-16T20:42:13.499074 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
510
|
-
F, [2018-11-16T20:42:13.499124 #20847] FATAL -- :
|
511
|
-
F, [2018-11-16T20:42:13.499168 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
512
|
-
I, [2018-11-16T20:42:13.501215 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
513
|
-
I, [2018-11-16T20:42:13.502084 #20847] INFO -- : Processing by DummyController#crash as HTML
|
514
|
-
I, [2018-11-16T20:42:13.502501 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
515
|
-
F, [2018-11-16T20:42:13.509290 #20847] FATAL -- :
|
516
|
-
F, [2018-11-16T20:42:13.512887 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
517
|
-
F, [2018-11-16T20:42:13.512931 #20847] FATAL -- :
|
518
|
-
F, [2018-11-16T20:42:13.512954 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
519
|
-
I, [2018-11-16T20:42:13.514967 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
520
|
-
I, [2018-11-16T20:42:13.515719 #20847] INFO -- : Processing by DummyController#crash as HTML
|
521
|
-
I, [2018-11-16T20:42:13.516008 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
522
|
-
F, [2018-11-16T20:42:13.521269 #20847] FATAL -- :
|
523
|
-
F, [2018-11-16T20:42:13.524933 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
524
|
-
F, [2018-11-16T20:42:13.524993 #20847] FATAL -- :
|
525
|
-
F, [2018-11-16T20:42:13.525016 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
526
|
-
I, [2018-11-16T20:42:13.527097 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
527
|
-
I, [2018-11-16T20:42:13.527810 #20847] INFO -- : Processing by DummyController#crash as HTML
|
528
|
-
I, [2018-11-16T20:42:13.528120 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
529
|
-
F, [2018-11-16T20:42:13.533039 #20847] FATAL -- :
|
530
|
-
F, [2018-11-16T20:42:13.537217 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
531
|
-
F, [2018-11-16T20:42:13.537264 #20847] FATAL -- :
|
532
|
-
F, [2018-11-16T20:42:13.537288 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
533
|
-
I, [2018-11-16T20:42:13.539247 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
534
|
-
I, [2018-11-16T20:42:13.539964 #20847] INFO -- : Processing by DummyController#crash as HTML
|
535
|
-
I, [2018-11-16T20:42:13.540212 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
536
|
-
F, [2018-11-16T20:42:13.544929 #20847] FATAL -- :
|
537
|
-
F, [2018-11-16T20:42:13.549149 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
538
|
-
F, [2018-11-16T20:42:13.549203 #20847] FATAL -- :
|
539
|
-
F, [2018-11-16T20:42:13.549227 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
540
|
-
I, [2018-11-16T20:42:13.551516 #20847] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
541
|
-
I, [2018-11-16T20:42:13.552432 #20847] INFO -- : Processing by DummyController#crash as HTML
|
542
|
-
I, [2018-11-16T20:42:13.552751 #20847] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
543
|
-
F, [2018-11-16T20:42:13.557445 #20847] FATAL -- :
|
544
|
-
F, [2018-11-16T20:42:13.562961 #20847] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
545
|
-
F, [2018-11-16T20:42:13.563008 #20847] FATAL -- :
|
546
|
-
F, [2018-11-16T20:42:13.563033 #20847] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
547
|
-
I, [2018-11-16T20:42:13.564871 #20847] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-16 20:42:13 +0800
|
548
|
-
I, [2018-11-16T20:42:13.565660 #20847] INFO -- : Processing by DummyController#index as HTML
|
549
|
-
I, [2018-11-16T20:42:13.566408 #20847] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
550
|
-
I, [2018-11-16T20:42:13.566732 #20847] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
551
|
-
I, [2018-11-16T20:42:13.567057 #20847] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
552
|
-
D, [2018-11-16T20:42:16.468067 #20858] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
553
|
-
D, [2018-11-16T20:42:16.468467 #20858] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
554
|
-
D, [2018-11-16T20:42:16.470775 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
555
|
-
D, [2018-11-16T20:42:16.471314 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
556
|
-
D, [2018-11-16T20:42:16.471772 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
557
|
-
D, [2018-11-16T20:42:16.473085 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
558
|
-
D, [2018-11-16T20:42:16.480794 #20858] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
559
|
-
D, [2018-11-16T20:42:16.483774 #20858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
560
|
-
D, [2018-11-16T20:42:16.484612 #20858] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:42:16.484044"], ["updated_at", "2018-11-16 12:42:16.484044"]]
|
561
|
-
D, [2018-11-16T20:42:16.484782 #20858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
562
|
-
I, [2018-11-16T20:42:16.520465 #20858] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:16 +0800
|
563
|
-
I, [2018-11-16T20:42:16.522338 #20858] INFO -- : Processing by DummyController#active_job as HTML
|
564
|
-
I, [2018-11-16T20:42:16.526527 #20858] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
565
|
-
I, [2018-11-16T20:42:16.528781 #20858] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.8ms)
|
566
|
-
I, [2018-11-16T20:42:16.529223 #20858] INFO -- : Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
567
|
-
I, [2018-11-16T20:42:18.537453 #20858] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:18 +0800
|
568
|
-
I, [2018-11-16T20:42:18.538514 #20858] INFO -- : Processing by DummyController#active_job as HTML
|
569
|
-
I, [2018-11-16T20:42:18.539604 #20858] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
570
|
-
I, [2018-11-16T20:42:18.539965 #20858] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
571
|
-
I, [2018-11-16T20:42:18.540349 #20858] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
572
|
-
I, [2018-11-16T20:42:20.547221 #20858] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:20 +0800
|
573
|
-
I, [2018-11-16T20:42:20.548181 #20858] INFO -- : Processing by DummyController#active_job as HTML
|
574
|
-
I, [2018-11-16T20:42:20.549512 #20858] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
575
|
-
I, [2018-11-16T20:42:20.550553 #20858] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
576
|
-
I, [2018-11-16T20:42:20.551025 #20858] INFO -- : Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
577
|
-
I, [2018-11-16T20:42:22.561018 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
578
|
-
I, [2018-11-16T20:42:22.563516 #20858] INFO -- : Processing by DummyController#crash as HTML
|
579
|
-
I, [2018-11-16T20:42:22.570502 #20858] INFO -- : Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
|
580
|
-
F, [2018-11-16T20:42:22.629676 #20858] FATAL -- :
|
581
|
-
F, [2018-11-16T20:42:22.629957 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
582
|
-
F, [2018-11-16T20:42:22.630026 #20858] FATAL -- :
|
583
|
-
F, [2018-11-16T20:42:22.630075 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
584
|
-
I, [2018-11-16T20:42:22.634710 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
585
|
-
I, [2018-11-16T20:42:22.636384 #20858] INFO -- : Processing by DummyController#crash as HTML
|
586
|
-
I, [2018-11-16T20:42:22.636889 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
587
|
-
F, [2018-11-16T20:42:22.652048 #20858] FATAL -- :
|
588
|
-
F, [2018-11-16T20:42:22.660852 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
589
|
-
F, [2018-11-16T20:42:22.660937 #20858] FATAL -- :
|
590
|
-
F, [2018-11-16T20:42:22.660982 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
591
|
-
I, [2018-11-16T20:42:22.663547 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
592
|
-
I, [2018-11-16T20:42:22.664661 #20858] INFO -- : Processing by DummyController#crash as HTML
|
593
|
-
I, [2018-11-16T20:42:22.664982 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
594
|
-
F, [2018-11-16T20:42:22.672893 #20858] FATAL -- :
|
595
|
-
F, [2018-11-16T20:42:22.677277 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
596
|
-
F, [2018-11-16T20:42:22.677317 #20858] FATAL -- :
|
597
|
-
F, [2018-11-16T20:42:22.677346 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
598
|
-
I, [2018-11-16T20:42:22.679601 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
599
|
-
I, [2018-11-16T20:42:22.680734 #20858] INFO -- : Processing by DummyController#crash as HTML
|
600
|
-
I, [2018-11-16T20:42:22.681263 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
601
|
-
F, [2018-11-16T20:42:22.690359 #20858] FATAL -- :
|
602
|
-
F, [2018-11-16T20:42:22.690433 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
603
|
-
F, [2018-11-16T20:42:22.695567 #20858] FATAL -- :
|
604
|
-
F, [2018-11-16T20:42:22.695604 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
605
|
-
I, [2018-11-16T20:42:22.698397 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
606
|
-
I, [2018-11-16T20:42:22.699519 #20858] INFO -- : Processing by DummyController#crash as HTML
|
607
|
-
I, [2018-11-16T20:42:22.700057 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
608
|
-
F, [2018-11-16T20:42:22.713169 #20858] FATAL -- :
|
609
|
-
F, [2018-11-16T20:42:22.713246 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
610
|
-
F, [2018-11-16T20:42:22.713293 #20858] FATAL -- :
|
611
|
-
F, [2018-11-16T20:42:22.713832 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
612
|
-
I, [2018-11-16T20:42:22.726209 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
613
|
-
I, [2018-11-16T20:42:22.727589 #20858] INFO -- : Processing by DummyController#crash as HTML
|
614
|
-
I, [2018-11-16T20:42:22.727902 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
615
|
-
F, [2018-11-16T20:42:22.734613 #20858] FATAL -- :
|
616
|
-
F, [2018-11-16T20:42:22.738827 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
617
|
-
F, [2018-11-16T20:42:22.738946 #20858] FATAL -- :
|
618
|
-
F, [2018-11-16T20:42:22.738985 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
619
|
-
I, [2018-11-16T20:42:22.741741 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
620
|
-
I, [2018-11-16T20:42:22.742778 #20858] INFO -- : Processing by DummyController#crash as HTML
|
621
|
-
I, [2018-11-16T20:42:22.743081 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
622
|
-
F, [2018-11-16T20:42:22.750197 #20858] FATAL -- :
|
623
|
-
F, [2018-11-16T20:42:22.756779 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
624
|
-
F, [2018-11-16T20:42:22.756818 #20858] FATAL -- :
|
625
|
-
F, [2018-11-16T20:42:22.756843 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
626
|
-
I, [2018-11-16T20:42:22.759082 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
627
|
-
I, [2018-11-16T20:42:22.760058 #20858] INFO -- : Processing by DummyController#crash as HTML
|
628
|
-
I, [2018-11-16T20:42:22.760351 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
629
|
-
F, [2018-11-16T20:42:22.768045 #20858] FATAL -- :
|
630
|
-
F, [2018-11-16T20:42:22.773722 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
631
|
-
F, [2018-11-16T20:42:22.773806 #20858] FATAL -- :
|
632
|
-
F, [2018-11-16T20:42:22.773869 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
633
|
-
I, [2018-11-16T20:42:22.777130 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
634
|
-
I, [2018-11-16T20:42:22.778278 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
635
|
-
I, [2018-11-16T20:42:22.778337 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
636
|
-
I, [2018-11-16T20:42:22.786160 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
637
|
-
I, [2018-11-16T20:42:22.793333 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
638
|
-
I, [2018-11-16T20:42:22.793656 #20858] INFO -- : Completed 200 OK in 15ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
639
|
-
I, [2018-11-16T20:42:22.796253 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
640
|
-
I, [2018-11-16T20:42:22.797049 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
641
|
-
I, [2018-11-16T20:42:22.797109 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
642
|
-
I, [2018-11-16T20:42:22.802082 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
643
|
-
I, [2018-11-16T20:42:22.806954 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
644
|
-
I, [2018-11-16T20:42:22.807279 #20858] INFO -- : Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
645
|
-
I, [2018-11-16T20:42:22.809518 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
646
|
-
I, [2018-11-16T20:42:22.810245 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
647
|
-
I, [2018-11-16T20:42:22.810298 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
648
|
-
I, [2018-11-16T20:42:22.817546 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
649
|
-
I, [2018-11-16T20:42:22.818961 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
650
|
-
I, [2018-11-16T20:42:22.823276 #20858] INFO -- : Completed 200 OK in 13ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
651
|
-
I, [2018-11-16T20:42:22.825327 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
652
|
-
I, [2018-11-16T20:42:22.826035 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
653
|
-
I, [2018-11-16T20:42:22.826073 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
654
|
-
I, [2018-11-16T20:42:22.830225 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
655
|
-
I, [2018-11-16T20:42:22.835927 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
656
|
-
I, [2018-11-16T20:42:22.836263 #20858] INFO -- : Completed 200 OK in 10ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
657
|
-
I, [2018-11-16T20:42:22.838320 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
658
|
-
I, [2018-11-16T20:42:22.839069 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
659
|
-
I, [2018-11-16T20:42:22.839112 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
660
|
-
I, [2018-11-16T20:42:22.843329 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
661
|
-
I, [2018-11-16T20:42:22.848261 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
662
|
-
I, [2018-11-16T20:42:22.848683 #20858] INFO -- : Completed 200 OK in 9ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
663
|
-
I, [2018-11-16T20:42:22.851130 #20858] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
664
|
-
I, [2018-11-16T20:42:22.851878 #20858] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
665
|
-
I, [2018-11-16T20:42:22.851933 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
666
|
-
I, [2018-11-16T20:42:22.858767 #20858] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
667
|
-
I, [2018-11-16T20:42:22.863253 #20858] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
668
|
-
I, [2018-11-16T20:42:22.863588 #20858] INFO -- : Completed 200 OK in 12ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
669
|
-
I, [2018-11-16T20:42:22.866350 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
670
|
-
I, [2018-11-16T20:42:22.867415 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
671
|
-
I, [2018-11-16T20:42:22.867464 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
672
|
-
I, [2018-11-16T20:42:22.876061 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
673
|
-
I, [2018-11-16T20:42:22.876307 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
674
|
-
I, [2018-11-16T20:42:22.876582 #20858] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
675
|
-
I, [2018-11-16T20:42:22.878730 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
676
|
-
I, [2018-11-16T20:42:22.879451 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
677
|
-
I, [2018-11-16T20:42:22.879489 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
678
|
-
I, [2018-11-16T20:42:22.889676 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
679
|
-
I, [2018-11-16T20:42:22.889902 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
680
|
-
I, [2018-11-16T20:42:22.890174 #20858] INFO -- : Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
681
|
-
I, [2018-11-16T20:42:22.892088 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
682
|
-
I, [2018-11-16T20:42:22.892771 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
683
|
-
I, [2018-11-16T20:42:22.892811 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
684
|
-
I, [2018-11-16T20:42:22.901601 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
685
|
-
I, [2018-11-16T20:42:22.901866 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
686
|
-
I, [2018-11-16T20:42:22.902171 #20858] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
687
|
-
I, [2018-11-16T20:42:22.904478 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
688
|
-
I, [2018-11-16T20:42:22.905288 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
689
|
-
I, [2018-11-16T20:42:22.905339 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
690
|
-
I, [2018-11-16T20:42:22.916295 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
691
|
-
I, [2018-11-16T20:42:22.916652 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
692
|
-
I, [2018-11-16T20:42:22.917118 #20858] INFO -- : Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
693
|
-
I, [2018-11-16T20:42:22.920187 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
694
|
-
I, [2018-11-16T20:42:22.921158 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
695
|
-
I, [2018-11-16T20:42:22.921210 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
696
|
-
I, [2018-11-16T20:42:22.930541 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
697
|
-
I, [2018-11-16T20:42:22.930913 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
698
|
-
I, [2018-11-16T20:42:22.931210 #20858] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
699
|
-
I, [2018-11-16T20:42:22.933694 #20858] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
700
|
-
I, [2018-11-16T20:42:22.934458 #20858] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
701
|
-
I, [2018-11-16T20:42:22.934505 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
702
|
-
I, [2018-11-16T20:42:22.943176 #20858] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
703
|
-
I, [2018-11-16T20:42:22.943413 #20858] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
704
|
-
I, [2018-11-16T20:42:22.943682 #20858] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
705
|
-
I, [2018-11-16T20:42:22.945780 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
706
|
-
I, [2018-11-16T20:42:22.946435 #20858] INFO -- : Processing by DummyController#crash as HTML
|
707
|
-
I, [2018-11-16T20:42:22.946473 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
708
|
-
I, [2018-11-16T20:42:22.946688 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
709
|
-
F, [2018-11-16T20:42:22.951401 #20858] FATAL -- :
|
710
|
-
F, [2018-11-16T20:42:22.955871 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
711
|
-
F, [2018-11-16T20:42:22.955916 #20858] FATAL -- :
|
712
|
-
F, [2018-11-16T20:42:22.955944 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
713
|
-
I, [2018-11-16T20:42:22.957697 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
714
|
-
I, [2018-11-16T20:42:22.958384 #20858] INFO -- : Processing by DummyController#crash as HTML
|
715
|
-
I, [2018-11-16T20:42:22.958423 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
716
|
-
I, [2018-11-16T20:42:22.958645 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
717
|
-
F, [2018-11-16T20:42:22.962853 #20858] FATAL -- :
|
718
|
-
F, [2018-11-16T20:42:22.962892 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
719
|
-
F, [2018-11-16T20:42:22.962925 #20858] FATAL -- :
|
720
|
-
F, [2018-11-16T20:42:22.962963 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
721
|
-
I, [2018-11-16T20:42:22.971097 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
722
|
-
I, [2018-11-16T20:42:22.971927 #20858] INFO -- : Processing by DummyController#crash as HTML
|
723
|
-
I, [2018-11-16T20:42:22.971977 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
724
|
-
I, [2018-11-16T20:42:22.972216 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
725
|
-
F, [2018-11-16T20:42:22.977744 #20858] FATAL -- :
|
726
|
-
F, [2018-11-16T20:42:22.977790 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
727
|
-
F, [2018-11-16T20:42:22.982192 #20858] FATAL -- :
|
728
|
-
F, [2018-11-16T20:42:22.982238 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
729
|
-
I, [2018-11-16T20:42:22.984027 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
730
|
-
I, [2018-11-16T20:42:22.984890 #20858] INFO -- : Processing by DummyController#crash as HTML
|
731
|
-
I, [2018-11-16T20:42:22.984934 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
732
|
-
I, [2018-11-16T20:42:22.985168 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
733
|
-
F, [2018-11-16T20:42:22.989747 #20858] FATAL -- :
|
734
|
-
F, [2018-11-16T20:42:22.994129 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
735
|
-
F, [2018-11-16T20:42:22.994180 #20858] FATAL -- :
|
736
|
-
F, [2018-11-16T20:42:22.994204 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
737
|
-
I, [2018-11-16T20:42:22.995901 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:22 +0800
|
738
|
-
I, [2018-11-16T20:42:22.996574 #20858] INFO -- : Processing by DummyController#crash as HTML
|
739
|
-
I, [2018-11-16T20:42:22.996611 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
740
|
-
I, [2018-11-16T20:42:22.996833 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
741
|
-
F, [2018-11-16T20:42:23.001736 #20858] FATAL -- :
|
742
|
-
F, [2018-11-16T20:42:23.008418 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
743
|
-
F, [2018-11-16T20:42:23.024840 #20858] FATAL -- :
|
744
|
-
F, [2018-11-16T20:42:23.025125 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
745
|
-
I, [2018-11-16T20:42:23.028068 #20858] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
746
|
-
I, [2018-11-16T20:42:23.028927 #20858] INFO -- : Processing by DummyController#crash as HTML
|
747
|
-
I, [2018-11-16T20:42:23.028991 #20858] INFO -- : Parameters: {"foo"=>"bar"}
|
748
|
-
I, [2018-11-16T20:42:23.029245 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
749
|
-
F, [2018-11-16T20:42:23.039328 #20858] FATAL -- :
|
750
|
-
F, [2018-11-16T20:42:23.039386 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
751
|
-
F, [2018-11-16T20:42:23.039415 #20858] FATAL -- :
|
752
|
-
F, [2018-11-16T20:42:23.039441 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
753
|
-
I, [2018-11-16T20:42:23.041402 #20858] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
754
|
-
I, [2018-11-16T20:42:23.042043 #20858] INFO -- : Processing by DummyController#index as HTML
|
755
|
-
I, [2018-11-16T20:42:23.042721 #20858] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
756
|
-
I, [2018-11-16T20:42:23.043001 #20858] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
757
|
-
I, [2018-11-16T20:42:23.043275 #20858] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
758
|
-
I, [2018-11-16T20:42:23.044870 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
759
|
-
I, [2018-11-16T20:42:23.045437 #20858] INFO -- : Processing by DummyController#crash as HTML
|
760
|
-
I, [2018-11-16T20:42:23.045672 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
761
|
-
F, [2018-11-16T20:42:23.051067 #20858] FATAL -- :
|
762
|
-
F, [2018-11-16T20:42:23.058421 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
763
|
-
F, [2018-11-16T20:42:23.058467 #20858] FATAL -- :
|
764
|
-
F, [2018-11-16T20:42:23.058495 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
765
|
-
I, [2018-11-16T20:42:23.060441 #20858] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
766
|
-
I, [2018-11-16T20:42:23.061113 #20858] INFO -- : Processing by DummyController#resque as HTML
|
767
|
-
I, [2018-11-16T20:42:23.062226 #20858] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
768
|
-
I, [2018-11-16T20:42:23.062478 #20858] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
769
|
-
I, [2018-11-16T20:42:23.062736 #20858] INFO -- : Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
770
|
-
I, [2018-11-16T20:42:23.064383 #20858] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
771
|
-
I, [2018-11-16T20:42:23.065196 #20858] INFO -- : Processing by DummyController#resque as HTML
|
772
|
-
I, [2018-11-16T20:42:23.074122 #20858] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
773
|
-
I, [2018-11-16T20:42:23.074361 #20858] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
774
|
-
I, [2018-11-16T20:42:23.074621 #20858] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
775
|
-
I, [2018-11-16T20:42:23.077431 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
776
|
-
I, [2018-11-16T20:42:23.078263 #20858] INFO -- : Processing by DummyController#crash as HTML
|
777
|
-
I, [2018-11-16T20:42:23.078510 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
778
|
-
F, [2018-11-16T20:42:23.083598 #20858] FATAL -- :
|
779
|
-
F, [2018-11-16T20:42:23.088500 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
780
|
-
F, [2018-11-16T20:42:23.088545 #20858] FATAL -- :
|
781
|
-
F, [2018-11-16T20:42:23.088576 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
782
|
-
I, [2018-11-16T20:42:23.090832 #20858] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:42:23 +0800
|
783
|
-
I, [2018-11-16T20:42:23.091792 #20858] INFO -- : Processing by DummyController#delayed_job as HTML
|
784
|
-
I, [2018-11-16T20:42:23.107933 #20858] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.5ms)
|
785
|
-
F, [2018-11-16T20:42:23.120025 #20858] FATAL -- :
|
786
|
-
F, [2018-11-16T20:42:23.127204 #20858] FATAL -- : AirbrakeTestError (delayed_job error):
|
787
|
-
F, [2018-11-16T20:42:23.127286 #20858] FATAL -- :
|
788
|
-
F, [2018-11-16T20:42:23.127322 #20858] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
789
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
790
|
-
I, [2018-11-16T20:42:27.139117 #20858] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:42:27 +0800
|
791
|
-
I, [2018-11-16T20:42:27.140124 #20858] INFO -- : Processing by DummyController#delayed_job as HTML
|
792
|
-
I, [2018-11-16T20:42:27.141564 #20858] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
793
|
-
F, [2018-11-16T20:42:27.143471 #20858] FATAL -- :
|
794
|
-
F, [2018-11-16T20:42:27.143542 #20858] FATAL -- : AirbrakeTestError (delayed_job error):
|
795
|
-
F, [2018-11-16T20:42:27.143581 #20858] FATAL -- :
|
796
|
-
F, [2018-11-16T20:42:27.143615 #20858] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
797
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
798
|
-
I, [2018-11-16T20:42:29.149355 #20858] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:42:29 +0800
|
799
|
-
I, [2018-11-16T20:42:29.150552 #20858] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
800
|
-
D, [2018-11-16T20:42:29.151098 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
801
|
-
D, [2018-11-16T20:42:29.155044 #20858] DEBUG -- : [1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
802
|
-
D, [2018-11-16T20:42:29.155354 #20858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
803
|
-
I, [2018-11-16T20:42:29.170414 #20858] INFO -- : Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.7ms)
|
804
|
-
F, [2018-11-16T20:42:29.180012 #20858] FATAL -- :
|
805
|
-
F, [2018-11-16T20:42:29.187631 #20858] FATAL -- : AirbrakeTestError (after_rollback):
|
806
|
-
F, [2018-11-16T20:42:29.187702 #20858] FATAL -- :
|
807
|
-
F, [2018-11-16T20:42:29.187746 #20858] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
808
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
809
|
-
I, [2018-11-16T20:42:31.196102 #20858] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-16 20:42:31 +0800
|
810
|
-
I, [2018-11-16T20:42:31.197048 #20858] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
811
|
-
D, [2018-11-16T20:42:31.197516 #20858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
812
|
-
D, [2018-11-16T20:42:31.198135 #20858] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
813
|
-
D, [2018-11-16T20:42:31.198433 #20858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
814
|
-
I, [2018-11-16T20:42:31.205684 #20858] INFO -- : Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms)
|
815
|
-
F, [2018-11-16T20:42:31.215605 #20858] FATAL -- :
|
816
|
-
F, [2018-11-16T20:42:31.220847 #20858] FATAL -- : AirbrakeTestError (after_commit):
|
817
|
-
F, [2018-11-16T20:42:31.220903 #20858] FATAL -- :
|
818
|
-
F, [2018-11-16T20:42:31.220932 #20858] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
819
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
820
|
-
I, [2018-11-16T20:42:33.226980 #20858] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:42:33 +0800
|
821
|
-
I, [2018-11-16T20:42:33.227951 #20858] INFO -- : Processing by DummyController#crash as HTML
|
822
|
-
I, [2018-11-16T20:42:33.228290 #20858] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
823
|
-
F, [2018-11-16T20:42:33.233062 #20858] FATAL -- :
|
824
|
-
F, [2018-11-16T20:42:33.237851 #20858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
825
|
-
F, [2018-11-16T20:42:33.237913 #20858] FATAL -- :
|
826
|
-
F, [2018-11-16T20:42:33.237944 #20858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
827
|
-
D, [2018-11-16T20:42:38.396304 #20872] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
828
|
-
D, [2018-11-16T20:42:38.396681 #20872] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
829
|
-
D, [2018-11-16T20:42:38.398979 #20872] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
830
|
-
D, [2018-11-16T20:42:38.399457 #20872] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
831
|
-
D, [2018-11-16T20:42:38.399875 #20872] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
832
|
-
D, [2018-11-16T20:42:38.401227 #20872] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
833
|
-
D, [2018-11-16T20:42:38.409005 #20872] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
834
|
-
D, [2018-11-16T20:42:38.411996 #20872] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
835
|
-
D, [2018-11-16T20:42:38.412985 #20872] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:42:38.412311"], ["updated_at", "2018-11-16 12:42:38.412311"]]
|
836
|
-
D, [2018-11-16T20:42:38.413180 #20872] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
837
|
-
I, [2018-11-16T20:42:38.449013 #20872] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:38 +0800
|
838
|
-
I, [2018-11-16T20:42:38.450783 #20872] INFO -- : Processing by DummyController#active_job as HTML
|
839
|
-
I, [2018-11-16T20:42:38.455240 #20872] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
840
|
-
I, [2018-11-16T20:42:38.456117 #20872] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.6ms)
|
841
|
-
I, [2018-11-16T20:42:38.457988 #20872] INFO -- : Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
842
|
-
I, [2018-11-16T20:42:40.466063 #20872] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:40 +0800
|
843
|
-
I, [2018-11-16T20:42:40.467174 #20872] INFO -- : Processing by DummyController#active_job as HTML
|
844
|
-
I, [2018-11-16T20:42:40.468264 #20872] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
845
|
-
I, [2018-11-16T20:42:40.470845 #20872] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
846
|
-
I, [2018-11-16T20:42:40.473688 #20872] INFO -- : Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
847
|
-
I, [2018-11-16T20:42:42.478027 #20872] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:42:42 +0800
|
848
|
-
I, [2018-11-16T20:42:42.479002 #20872] INFO -- : Processing by DummyController#active_job as HTML
|
849
|
-
I, [2018-11-16T20:42:42.480097 #20872] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
850
|
-
I, [2018-11-16T20:42:42.480993 #20872] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
851
|
-
I, [2018-11-16T20:42:42.481382 #20872] INFO -- : Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
852
|
-
I, [2018-11-16T20:42:44.489508 #20872] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:42:44 +0800
|
853
|
-
I, [2018-11-16T20:42:44.490607 #20872] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
854
|
-
D, [2018-11-16T20:42:44.491002 #20872] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
855
|
-
D, [2018-11-16T20:42:44.495173 #20872] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
856
|
-
D, [2018-11-16T20:42:44.495612 #20872] DEBUG -- : [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
857
|
-
I, [2018-11-16T20:42:44.510896 #20872] INFO -- : Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.7ms)
|
858
|
-
F, [2018-11-16T20:42:44.525859 #20872] FATAL -- :
|
859
|
-
F, [2018-11-16T20:42:44.533233 #20872] FATAL -- : AirbrakeTestError (after_rollback):
|
860
|
-
F, [2018-11-16T20:42:44.533294 #20872] FATAL -- :
|
861
|
-
F, [2018-11-16T20:42:44.533330 #20872] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
862
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
863
|
-
D, [2018-11-16T20:45:26.631959 #21593] DEBUG -- : [1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
864
|
-
D, [2018-11-16T20:45:26.632601 #21593] DEBUG -- : [1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
865
|
-
D, [2018-11-16T20:45:26.635562 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
866
|
-
D, [2018-11-16T20:45:26.636065 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
867
|
-
D, [2018-11-16T20:45:26.636530 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
868
|
-
D, [2018-11-16T20:45:26.638172 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
869
|
-
D, [2018-11-16T20:45:26.650943 #21593] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
870
|
-
D, [2018-11-16T20:45:26.654333 #21593] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
871
|
-
D, [2018-11-16T20:45:26.655205 #21593] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:45:26.654627"], ["updated_at", "2018-11-16 12:45:26.654627"]]
|
872
|
-
D, [2018-11-16T20:45:26.655382 #21593] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
873
|
-
I, [2018-11-16T20:45:26.698434 #21593] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:45:26 +0800
|
874
|
-
I, [2018-11-16T20:45:26.700659 #21593] INFO -- : Processing by DummyController#active_job as HTML
|
875
|
-
I, [2018-11-16T20:45:26.706893 #21593] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
876
|
-
I, [2018-11-16T20:45:26.709939 #21593] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (2.5ms)
|
877
|
-
I, [2018-11-16T20:45:26.713415 #21593] INFO -- : Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
878
|
-
I, [2018-11-16T20:45:28.721512 #21593] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:45:28 +0800
|
879
|
-
I, [2018-11-16T20:45:28.722583 #21593] INFO -- : Processing by DummyController#active_job as HTML
|
880
|
-
I, [2018-11-16T20:45:28.723680 #21593] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
881
|
-
I, [2018-11-16T20:45:28.726153 #21593] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
882
|
-
I, [2018-11-16T20:45:28.728973 #21593] INFO -- : Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
883
|
-
I, [2018-11-16T20:45:30.735756 #21593] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:45:30 +0800
|
884
|
-
I, [2018-11-16T20:45:30.737136 #21593] INFO -- : Processing by DummyController#active_job as HTML
|
885
|
-
I, [2018-11-16T20:45:30.738531 #21593] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
886
|
-
I, [2018-11-16T20:45:30.739564 #21593] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.4ms)
|
887
|
-
I, [2018-11-16T20:45:30.739937 #21593] INFO -- : Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
888
|
-
I, [2018-11-16T20:45:32.744988 #21593] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-16 20:45:32 +0800
|
889
|
-
I, [2018-11-16T20:45:32.748671 #21593] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
890
|
-
D, [2018-11-16T20:45:32.753023 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
891
|
-
D, [2018-11-16T20:45:32.753915 #21593] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
892
|
-
D, [2018-11-16T20:45:32.754211 #21593] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
893
|
-
I, [2018-11-16T20:45:32.770394 #21593] INFO -- : Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.8ms)
|
894
|
-
F, [2018-11-16T20:45:32.782470 #21593] FATAL -- :
|
895
|
-
F, [2018-11-16T20:45:32.786617 #21593] FATAL -- : AirbrakeTestError (after_commit):
|
896
|
-
F, [2018-11-16T20:45:32.786658 #21593] FATAL -- :
|
897
|
-
F, [2018-11-16T20:45:32.786685 #21593] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
898
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
899
|
-
I, [2018-11-16T20:45:34.795622 #21593] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:45:34 +0800
|
900
|
-
I, [2018-11-16T20:45:34.796773 #21593] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
901
|
-
D, [2018-11-16T20:45:34.797119 #21593] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
902
|
-
D, [2018-11-16T20:45:34.797958 #21593] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
903
|
-
D, [2018-11-16T20:45:34.798217 #21593] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
904
|
-
I, [2018-11-16T20:45:34.808182 #21593] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms)
|
905
|
-
F, [2018-11-16T20:45:34.825189 #21593] FATAL -- :
|
906
|
-
F, [2018-11-16T20:45:34.832936 #21593] FATAL -- : AirbrakeTestError (after_rollback):
|
907
|
-
F, [2018-11-16T20:45:34.833024 #21593] FATAL -- :
|
908
|
-
F, [2018-11-16T20:45:34.833057 #21593] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
909
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
910
|
-
I, [2018-11-16T20:45:36.840498 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
911
|
-
I, [2018-11-16T20:45:36.841725 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
912
|
-
I, [2018-11-16T20:45:36.841784 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
913
|
-
I, [2018-11-16T20:45:36.855677 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
914
|
-
I, [2018-11-16T20:45:36.856013 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
915
|
-
I, [2018-11-16T20:45:36.856355 #21593] INFO -- : Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
916
|
-
I, [2018-11-16T20:45:36.858988 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
917
|
-
I, [2018-11-16T20:45:36.859765 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
918
|
-
I, [2018-11-16T20:45:36.859823 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
919
|
-
I, [2018-11-16T20:45:36.868895 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
920
|
-
I, [2018-11-16T20:45:36.869136 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
921
|
-
I, [2018-11-16T20:45:36.869425 #21593] INFO -- : Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
922
|
-
I, [2018-11-16T20:45:36.871673 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
923
|
-
I, [2018-11-16T20:45:36.872519 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
924
|
-
I, [2018-11-16T20:45:36.872581 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
925
|
-
I, [2018-11-16T20:45:36.883301 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
926
|
-
I, [2018-11-16T20:45:36.883555 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
927
|
-
I, [2018-11-16T20:45:36.883822 #21593] INFO -- : Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
928
|
-
I, [2018-11-16T20:45:36.885892 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
929
|
-
I, [2018-11-16T20:45:36.886788 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
930
|
-
I, [2018-11-16T20:45:36.886831 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
931
|
-
I, [2018-11-16T20:45:36.897333 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
932
|
-
I, [2018-11-16T20:45:36.897623 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
933
|
-
I, [2018-11-16T20:45:36.897957 #21593] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
934
|
-
I, [2018-11-16T20:45:36.900117 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
935
|
-
I, [2018-11-16T20:45:36.900845 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
936
|
-
I, [2018-11-16T20:45:36.900889 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
937
|
-
I, [2018-11-16T20:45:36.909253 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
938
|
-
I, [2018-11-16T20:45:36.909510 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
939
|
-
I, [2018-11-16T20:45:36.909800 #21593] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
940
|
-
I, [2018-11-16T20:45:36.912116 #21593] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
941
|
-
I, [2018-11-16T20:45:36.912861 #21593] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
942
|
-
I, [2018-11-16T20:45:36.912904 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
943
|
-
I, [2018-11-16T20:45:36.923822 #21593] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
944
|
-
I, [2018-11-16T20:45:36.924078 #21593] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
945
|
-
I, [2018-11-16T20:45:36.924501 #21593] INFO -- : Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
946
|
-
I, [2018-11-16T20:45:36.927054 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
947
|
-
I, [2018-11-16T20:45:36.927926 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
948
|
-
I, [2018-11-16T20:45:36.927970 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
949
|
-
I, [2018-11-16T20:45:36.932800 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
950
|
-
I, [2018-11-16T20:45:36.936745 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
951
|
-
I, [2018-11-16T20:45:36.937108 #21593] INFO -- : Completed 200 OK in 9ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
952
|
-
I, [2018-11-16T20:45:36.939930 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
953
|
-
I, [2018-11-16T20:45:36.941256 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
954
|
-
I, [2018-11-16T20:45:36.941318 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
955
|
-
I, [2018-11-16T20:45:36.951214 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
956
|
-
I, [2018-11-16T20:45:36.951571 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
957
|
-
I, [2018-11-16T20:45:36.951899 #21593] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
958
|
-
I, [2018-11-16T20:45:36.954564 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
959
|
-
I, [2018-11-16T20:45:36.955501 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
960
|
-
I, [2018-11-16T20:45:36.955546 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
961
|
-
I, [2018-11-16T20:45:36.961341 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
962
|
-
I, [2018-11-16T20:45:36.966108 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
963
|
-
I, [2018-11-16T20:45:36.966498 #21593] INFO -- : Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
964
|
-
I, [2018-11-16T20:45:36.969280 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
965
|
-
I, [2018-11-16T20:45:36.970224 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
966
|
-
I, [2018-11-16T20:45:36.970269 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
967
|
-
I, [2018-11-16T20:45:36.976322 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
968
|
-
I, [2018-11-16T20:45:36.982659 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.4ms)
|
969
|
-
I, [2018-11-16T20:45:36.983234 #21593] INFO -- : Completed 200 OK in 13ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
970
|
-
I, [2018-11-16T20:45:36.985783 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:36 +0800
|
971
|
-
I, [2018-11-16T20:45:36.986610 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
972
|
-
I, [2018-11-16T20:45:36.986656 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
973
|
-
I, [2018-11-16T20:45:36.994419 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
974
|
-
I, [2018-11-16T20:45:36.999135 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.4ms)
|
975
|
-
I, [2018-11-16T20:45:36.999485 #21593] INFO -- : Completed 200 OK in 13ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
976
|
-
I, [2018-11-16T20:45:37.003093 #21593] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
977
|
-
I, [2018-11-16T20:45:37.004462 #21593] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
978
|
-
I, [2018-11-16T20:45:37.004542 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
979
|
-
I, [2018-11-16T20:45:37.011435 #21593] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
980
|
-
I, [2018-11-16T20:45:37.017101 #21593] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
981
|
-
I, [2018-11-16T20:45:37.017660 #21593] INFO -- : Completed 200 OK in 13ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
982
|
-
I, [2018-11-16T20:45:37.020808 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
983
|
-
I, [2018-11-16T20:45:37.021934 #21593] INFO -- : Processing by DummyController#crash as HTML
|
984
|
-
I, [2018-11-16T20:45:37.021989 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
985
|
-
I, [2018-11-16T20:45:37.022390 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
986
|
-
F, [2018-11-16T20:45:37.028526 #21593] FATAL -- :
|
987
|
-
F, [2018-11-16T20:45:37.033374 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
988
|
-
F, [2018-11-16T20:45:37.033424 #21593] FATAL -- :
|
989
|
-
F, [2018-11-16T20:45:37.033457 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
990
|
-
I, [2018-11-16T20:45:37.036624 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
991
|
-
I, [2018-11-16T20:45:37.038401 #21593] INFO -- : Processing by DummyController#crash as HTML
|
992
|
-
I, [2018-11-16T20:45:37.038559 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
993
|
-
I, [2018-11-16T20:45:37.039340 #21593] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
994
|
-
F, [2018-11-16T20:45:37.046997 #21593] FATAL -- :
|
995
|
-
F, [2018-11-16T20:45:37.050255 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
996
|
-
F, [2018-11-16T20:45:37.054941 #21593] FATAL -- :
|
997
|
-
F, [2018-11-16T20:45:37.055016 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
998
|
-
I, [2018-11-16T20:45:37.058334 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
999
|
-
I, [2018-11-16T20:45:37.060087 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1000
|
-
I, [2018-11-16T20:45:37.060184 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
1001
|
-
I, [2018-11-16T20:45:37.060808 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1002
|
-
F, [2018-11-16T20:45:37.079655 #21593] FATAL -- :
|
1003
|
-
F, [2018-11-16T20:45:37.089443 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1004
|
-
F, [2018-11-16T20:45:37.089499 #21593] FATAL -- :
|
1005
|
-
F, [2018-11-16T20:45:37.089533 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1006
|
-
I, [2018-11-16T20:45:37.093131 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1007
|
-
I, [2018-11-16T20:45:37.094505 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1008
|
-
I, [2018-11-16T20:45:37.094618 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
1009
|
-
I, [2018-11-16T20:45:37.095233 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1010
|
-
F, [2018-11-16T20:45:37.108710 #21593] FATAL -- :
|
1011
|
-
F, [2018-11-16T20:45:37.116464 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1012
|
-
F, [2018-11-16T20:45:37.116559 #21593] FATAL -- :
|
1013
|
-
F, [2018-11-16T20:45:37.116597 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1014
|
-
I, [2018-11-16T20:45:37.120486 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1015
|
-
I, [2018-11-16T20:45:37.122266 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1016
|
-
I, [2018-11-16T20:45:37.122346 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
1017
|
-
I, [2018-11-16T20:45:37.122776 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1018
|
-
F, [2018-11-16T20:45:37.133649 #21593] FATAL -- :
|
1019
|
-
F, [2018-11-16T20:45:37.141622 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1020
|
-
F, [2018-11-16T20:45:37.141728 #21593] FATAL -- :
|
1021
|
-
F, [2018-11-16T20:45:37.141826 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1022
|
-
I, [2018-11-16T20:45:37.145950 #21593] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1023
|
-
I, [2018-11-16T20:45:37.147593 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1024
|
-
I, [2018-11-16T20:45:37.147711 #21593] INFO -- : Parameters: {"foo"=>"bar"}
|
1025
|
-
I, [2018-11-16T20:45:37.148123 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1026
|
-
F, [2018-11-16T20:45:37.168730 #21593] FATAL -- :
|
1027
|
-
F, [2018-11-16T20:45:37.168883 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1028
|
-
F, [2018-11-16T20:45:37.168941 #21593] FATAL -- :
|
1029
|
-
F, [2018-11-16T20:45:37.168981 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1030
|
-
I, [2018-11-16T20:45:37.173690 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1031
|
-
I, [2018-11-16T20:45:37.175234 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1032
|
-
I, [2018-11-16T20:45:37.175818 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1033
|
-
F, [2018-11-16T20:45:37.182224 #21593] FATAL -- :
|
1034
|
-
F, [2018-11-16T20:45:37.187595 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1035
|
-
F, [2018-11-16T20:45:37.187702 #21593] FATAL -- :
|
1036
|
-
F, [2018-11-16T20:45:37.187755 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1037
|
-
I, [2018-11-16T20:45:37.192668 #21593] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1038
|
-
I, [2018-11-16T20:45:37.193846 #21593] INFO -- : Processing by DummyController#index as HTML
|
1039
|
-
I, [2018-11-16T20:45:37.195131 #21593] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1040
|
-
I, [2018-11-16T20:45:37.195775 #21593] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.5ms)
|
1041
|
-
I, [2018-11-16T20:45:37.196248 #21593] INFO -- : Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1042
|
-
I, [2018-11-16T20:45:37.199318 #21593] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1043
|
-
I, [2018-11-16T20:45:37.200459 #21593] INFO -- : Processing by DummyController#resque as HTML
|
1044
|
-
I, [2018-11-16T20:45:37.221915 #21593] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1045
|
-
I, [2018-11-16T20:45:37.222541 #21593] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.4ms)
|
1046
|
-
I, [2018-11-16T20:45:37.223206 #21593] INFO -- : Completed 200 OK in 23ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
1047
|
-
I, [2018-11-16T20:45:37.227114 #21593] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1048
|
-
I, [2018-11-16T20:45:37.227852 #21593] INFO -- : Processing by DummyController#resque as HTML
|
1049
|
-
I, [2018-11-16T20:45:37.228933 #21593] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1050
|
-
I, [2018-11-16T20:45:37.229184 #21593] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
1051
|
-
I, [2018-11-16T20:45:37.229509 #21593] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1052
|
-
I, [2018-11-16T20:45:37.231448 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1053
|
-
I, [2018-11-16T20:45:37.232398 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1054
|
-
I, [2018-11-16T20:45:37.232673 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1055
|
-
F, [2018-11-16T20:45:37.239267 #21593] FATAL -- :
|
1056
|
-
F, [2018-11-16T20:45:37.246342 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1057
|
-
F, [2018-11-16T20:45:37.246400 #21593] FATAL -- :
|
1058
|
-
F, [2018-11-16T20:45:37.246451 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1059
|
-
I, [2018-11-16T20:45:37.250250 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1060
|
-
I, [2018-11-16T20:45:37.251747 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1061
|
-
I, [2018-11-16T20:45:37.252152 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1062
|
-
F, [2018-11-16T20:45:37.259047 #21593] FATAL -- :
|
1063
|
-
F, [2018-11-16T20:45:37.259386 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1064
|
-
F, [2018-11-16T20:45:37.259541 #21593] FATAL -- :
|
1065
|
-
F, [2018-11-16T20:45:37.259606 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1066
|
-
I, [2018-11-16T20:45:37.283422 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1067
|
-
I, [2018-11-16T20:45:37.284851 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1068
|
-
I, [2018-11-16T20:45:37.285636 #21593] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1069
|
-
F, [2018-11-16T20:45:37.295289 #21593] FATAL -- :
|
1070
|
-
F, [2018-11-16T20:45:37.308072 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1071
|
-
F, [2018-11-16T20:45:37.308164 #21593] FATAL -- :
|
1072
|
-
F, [2018-11-16T20:45:37.308239 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1073
|
-
I, [2018-11-16T20:45:37.310774 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1074
|
-
I, [2018-11-16T20:45:37.312574 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1075
|
-
I, [2018-11-16T20:45:37.313358 #21593] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1076
|
-
F, [2018-11-16T20:45:37.320869 #21593] FATAL -- :
|
1077
|
-
F, [2018-11-16T20:45:37.330245 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1078
|
-
F, [2018-11-16T20:45:37.330410 #21593] FATAL -- :
|
1079
|
-
F, [2018-11-16T20:45:37.330512 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1080
|
-
I, [2018-11-16T20:45:37.337427 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1081
|
-
I, [2018-11-16T20:45:37.339196 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1082
|
-
I, [2018-11-16T20:45:37.340002 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1083
|
-
F, [2018-11-16T20:45:37.350207 #21593] FATAL -- :
|
1084
|
-
F, [2018-11-16T20:45:37.359374 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1085
|
-
F, [2018-11-16T20:45:37.361860 #21593] FATAL -- :
|
1086
|
-
F, [2018-11-16T20:45:37.362006 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1087
|
-
I, [2018-11-16T20:45:37.365447 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1088
|
-
I, [2018-11-16T20:45:37.366438 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1089
|
-
I, [2018-11-16T20:45:37.366848 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1090
|
-
F, [2018-11-16T20:45:37.374426 #21593] FATAL -- :
|
1091
|
-
F, [2018-11-16T20:45:37.383219 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1092
|
-
F, [2018-11-16T20:45:37.383590 #21593] FATAL -- :
|
1093
|
-
F, [2018-11-16T20:45:37.383671 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1094
|
-
I, [2018-11-16T20:45:37.387005 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1095
|
-
I, [2018-11-16T20:45:37.388039 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1096
|
-
I, [2018-11-16T20:45:37.388575 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1097
|
-
F, [2018-11-16T20:45:37.397202 #21593] FATAL -- :
|
1098
|
-
F, [2018-11-16T20:45:37.402027 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1099
|
-
F, [2018-11-16T20:45:37.402080 #21593] FATAL -- :
|
1100
|
-
F, [2018-11-16T20:45:37.402110 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1101
|
-
I, [2018-11-16T20:45:37.404482 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1102
|
-
I, [2018-11-16T20:45:37.405542 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1103
|
-
I, [2018-11-16T20:45:37.405975 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1104
|
-
F, [2018-11-16T20:45:37.411612 #21593] FATAL -- :
|
1105
|
-
F, [2018-11-16T20:45:37.415848 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1106
|
-
F, [2018-11-16T20:45:37.415905 #21593] FATAL -- :
|
1107
|
-
F, [2018-11-16T20:45:37.415935 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1108
|
-
I, [2018-11-16T20:45:37.418995 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:37 +0800
|
1109
|
-
I, [2018-11-16T20:45:37.419757 #21593] INFO -- : Processing by DummyController#crash as HTML
|
1110
|
-
I, [2018-11-16T20:45:37.420096 #21593] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1111
|
-
F, [2018-11-16T20:45:37.427368 #21593] FATAL -- :
|
1112
|
-
F, [2018-11-16T20:45:37.431900 #21593] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1113
|
-
F, [2018-11-16T20:45:37.431957 #21593] FATAL -- :
|
1114
|
-
F, [2018-11-16T20:45:37.431991 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1115
|
-
I, [2018-11-16T20:45:39.442175 #21593] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:45:39 +0800
|
1116
|
-
F, [2018-11-16T20:45:39.450266 #21593] FATAL -- :
|
1117
|
-
F, [2018-11-16T20:45:39.453762 #21593] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1118
|
-
F, [2018-11-16T20:45:39.453811 #21593] FATAL -- :
|
1119
|
-
F, [2018-11-16T20:45:39.453842 #21593] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1120
|
-
I, [2018-11-16T20:45:42.461424 #21593] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:45:42 +0800
|
1121
|
-
I, [2018-11-16T20:45:42.462893 #21593] INFO -- : Processing by DummyController#delayed_job as HTML
|
1122
|
-
I, [2018-11-16T20:45:42.481312 #21593] INFO -- : Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.4ms)
|
1123
|
-
F, [2018-11-16T20:45:42.486844 #21593] FATAL -- :
|
1124
|
-
F, [2018-11-16T20:45:42.491176 #21593] FATAL -- : AirbrakeTestError (delayed_job error):
|
1125
|
-
F, [2018-11-16T20:45:42.491223 #21593] FATAL -- :
|
1126
|
-
F, [2018-11-16T20:45:42.491252 #21593] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
1127
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1128
|
-
I, [2018-11-16T20:45:46.496211 #21593] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:45:46 +0800
|
1129
|
-
I, [2018-11-16T20:45:46.497046 #21593] INFO -- : Processing by DummyController#delayed_job as HTML
|
1130
|
-
I, [2018-11-16T20:45:46.497959 #21593] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1131
|
-
F, [2018-11-16T20:45:46.499074 #21593] FATAL -- :
|
1132
|
-
F, [2018-11-16T20:45:46.499147 #21593] FATAL -- : AirbrakeTestError (delayed_job error):
|
1133
|
-
F, [2018-11-16T20:45:46.499173 #21593] FATAL -- :
|
1134
|
-
F, [2018-11-16T20:45:46.499213 #21593] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
1135
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1136
|
-
D, [2018-11-16T20:56:44.771936 #21867] DEBUG -- : [1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1137
|
-
D, [2018-11-16T20:56:44.772390 #21867] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1138
|
-
D, [2018-11-16T20:56:44.775353 #21867] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1139
|
-
D, [2018-11-16T20:56:44.775856 #21867] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1140
|
-
D, [2018-11-16T20:56:44.776326 #21867] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1141
|
-
D, [2018-11-16T20:56:44.778059 #21867] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1142
|
-
D, [2018-11-16T20:56:44.788682 #21867] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1143
|
-
D, [2018-11-16T20:56:44.791803 #21867] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1144
|
-
D, [2018-11-16T20:56:44.792692 #21867] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:56:44.792104"], ["updated_at", "2018-11-16 12:56:44.792104"]]
|
1145
|
-
D, [2018-11-16T20:56:44.792881 #21867] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1146
|
-
I, [2018-11-16T20:56:44.836904 #21867] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:56:44 +0800
|
1147
|
-
I, [2018-11-16T20:56:44.838945 #21867] INFO -- : Processing by DummyController#crash as HTML
|
1148
|
-
I, [2018-11-16T20:56:44.839333 #21867] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1149
|
-
F, [2018-11-16T20:56:44.851006 #21867] FATAL -- :
|
1150
|
-
F, [2018-11-16T20:56:44.859912 #21867] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1151
|
-
F, [2018-11-16T20:56:44.859977 #21867] FATAL -- :
|
1152
|
-
F, [2018-11-16T20:56:44.860010 #21867] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1153
|
-
D, [2018-11-16T20:57:31.632483 #21882] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1154
|
-
D, [2018-11-16T20:57:31.632904 #21882] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1155
|
-
D, [2018-11-16T20:57:31.635773 #21882] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1156
|
-
D, [2018-11-16T20:57:31.636295 #21882] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1157
|
-
D, [2018-11-16T20:57:31.636745 #21882] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1158
|
-
D, [2018-11-16T20:57:31.638121 #21882] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1159
|
-
D, [2018-11-16T20:57:31.648397 #21882] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1160
|
-
D, [2018-11-16T20:57:31.655724 #21882] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1161
|
-
D, [2018-11-16T20:57:31.656672 #21882] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:57:31.656024"], ["updated_at", "2018-11-16 12:57:31.656024"]]
|
1162
|
-
D, [2018-11-16T20:57:31.656982 #21882] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
1163
|
-
I, [2018-11-16T20:57:31.709544 #21882] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:57:31 +0800
|
1164
|
-
I, [2018-11-16T20:57:31.711651 #21882] INFO -- : Processing by DummyController#crash as HTML
|
1165
|
-
I, [2018-11-16T20:57:31.712012 #21882] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1166
|
-
F, [2018-11-16T20:57:31.725770 #21882] FATAL -- :
|
1167
|
-
F, [2018-11-16T20:57:31.731064 #21882] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1168
|
-
F, [2018-11-16T20:57:31.731130 #21882] FATAL -- :
|
1169
|
-
F, [2018-11-16T20:57:31.731165 #21882] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1170
|
-
D, [2018-11-16T20:58:52.604413 #21902] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1171
|
-
D, [2018-11-16T20:58:52.604857 #21902] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1172
|
-
D, [2018-11-16T20:58:52.607125 #21902] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1173
|
-
D, [2018-11-16T20:58:52.607671 #21902] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1174
|
-
D, [2018-11-16T20:58:52.608118 #21902] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1175
|
-
D, [2018-11-16T20:58:52.609404 #21902] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1176
|
-
D, [2018-11-16T20:58:52.617235 #21902] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1177
|
-
D, [2018-11-16T20:58:52.620351 #21902] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1178
|
-
D, [2018-11-16T20:58:52.621291 #21902] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:58:52.620651"], ["updated_at", "2018-11-16 12:58:52.620651"]]
|
1179
|
-
D, [2018-11-16T20:58:52.621471 #21902] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1180
|
-
I, [2018-11-16T20:58:52.659008 #21902] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:58:52 +0800
|
1181
|
-
F, [2018-11-16T20:58:52.665130 #21902] FATAL -- :
|
1182
|
-
F, [2018-11-16T20:58:52.665741 #21902] FATAL -- : NoMethodError (undefined method `user' for #<RSpec::Mocks::ArgumentMatchers::AnyArgMatcher:0x00007fe8c9a8ef80>):
|
1183
|
-
F, [2018-11-16T20:58:52.665798 #21902] FATAL -- :
|
1184
|
-
F, [2018-11-16T20:58:52.665834 #21902] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1185
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1186
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1187
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1188
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1189
|
-
D, [2018-11-16T20:59:09.990793 #21920] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1190
|
-
D, [2018-11-16T20:59:09.991198 #21920] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1191
|
-
D, [2018-11-16T20:59:09.993487 #21920] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1192
|
-
D, [2018-11-16T20:59:09.993927 #21920] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1193
|
-
D, [2018-11-16T20:59:09.994349 #21920] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1194
|
-
D, [2018-11-16T20:59:09.995678 #21920] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1195
|
-
D, [2018-11-16T20:59:10.003600 #21920] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1196
|
-
D, [2018-11-16T20:59:10.006761 #21920] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1197
|
-
D, [2018-11-16T20:59:10.007688 #21920] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:59:10.007051"], ["updated_at", "2018-11-16 12:59:10.007051"]]
|
1198
|
-
D, [2018-11-16T20:59:10.007867 #21920] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1199
|
-
I, [2018-11-16T20:59:10.046606 #21920] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:59:10 +0800
|
1200
|
-
F, [2018-11-16T20:59:10.052251 #21920] FATAL -- :
|
1201
|
-
F, [2018-11-16T20:59:10.052838 #21920] FATAL -- : NoMethodError (undefined method `user' for #<RSpec::Mocks::ArgumentMatchers::AnyArgMatcher:0x00007f9330196b10>):
|
1202
|
-
F, [2018-11-16T20:59:10.052879 #21920] FATAL -- :
|
1203
|
-
F, [2018-11-16T20:59:10.052913 #21920] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1204
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1205
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1206
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1207
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1208
|
-
D, [2018-11-16T20:59:23.383862 #21931] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1209
|
-
D, [2018-11-16T20:59:23.384286 #21931] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1210
|
-
D, [2018-11-16T20:59:23.386529 #21931] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1211
|
-
D, [2018-11-16T20:59:23.386966 #21931] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1212
|
-
D, [2018-11-16T20:59:23.387394 #21931] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1213
|
-
D, [2018-11-16T20:59:23.388664 #21931] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1214
|
-
D, [2018-11-16T20:59:23.396600 #21931] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1215
|
-
D, [2018-11-16T20:59:23.399901 #21931] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1216
|
-
D, [2018-11-16T20:59:23.401056 #21931] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:59:23.400337"], ["updated_at", "2018-11-16 12:59:23.400337"]]
|
1217
|
-
D, [2018-11-16T20:59:23.401261 #21931] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1218
|
-
I, [2018-11-16T20:59:23.436985 #21931] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:59:23 +0800
|
1219
|
-
F, [2018-11-16T20:59:23.443724 #21931] FATAL -- :
|
1220
|
-
F, [2018-11-16T20:59:23.444877 #21931] FATAL -- : NoMethodError (undefined method `user' for {}:Hash):
|
1221
|
-
F, [2018-11-16T20:59:23.444917 #21931] FATAL -- :
|
1222
|
-
F, [2018-11-16T20:59:23.444948 #21931] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1223
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1224
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1225
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1226
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1227
|
-
D, [2018-11-16T20:59:40.153187 #21963] DEBUG -- : [1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1228
|
-
D, [2018-11-16T20:59:40.153633 #21963] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1229
|
-
D, [2018-11-16T20:59:40.155831 #21963] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1230
|
-
D, [2018-11-16T20:59:40.156272 #21963] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1231
|
-
D, [2018-11-16T20:59:40.156747 #21963] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1232
|
-
D, [2018-11-16T20:59:40.158137 #21963] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1233
|
-
D, [2018-11-16T20:59:40.167918 #21963] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1234
|
-
D, [2018-11-16T20:59:40.172026 #21963] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1235
|
-
D, [2018-11-16T20:59:40.173425 #21963] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 12:59:40.172488"], ["updated_at", "2018-11-16 12:59:40.172488"]]
|
1236
|
-
D, [2018-11-16T20:59:40.173682 #21963] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1237
|
-
I, [2018-11-16T20:59:40.211050 #21963] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:59:40 +0800
|
1238
|
-
F, [2018-11-16T20:59:40.223331 #21963] FATAL -- :
|
1239
|
-
F, [2018-11-16T20:59:40.231940 #21963] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1240
|
-
F, [2018-11-16T20:59:40.232013 #21963] FATAL -- :
|
1241
|
-
F, [2018-11-16T20:59:40.232044 #21963] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1242
|
-
D, [2018-11-16T21:00:08.874209 #21990] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1243
|
-
D, [2018-11-16T21:00:08.874658 #21990] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1244
|
-
D, [2018-11-16T21:00:08.876980 #21990] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1245
|
-
D, [2018-11-16T21:00:08.877424 #21990] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1246
|
-
D, [2018-11-16T21:00:08.877894 #21990] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1247
|
-
D, [2018-11-16T21:00:08.879151 #21990] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1248
|
-
D, [2018-11-16T21:00:08.887723 #21990] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1249
|
-
D, [2018-11-16T21:00:08.890939 #21990] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1250
|
-
D, [2018-11-16T21:00:08.891814 #21990] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:00:08.891245"], ["updated_at", "2018-11-16 13:00:08.891245"]]
|
1251
|
-
D, [2018-11-16T21:00:08.891997 #21990] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1252
|
-
I, [2018-11-16T21:00:23.926999 #21990] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:00:23 +0800
|
1253
|
-
F, [2018-11-16T21:00:23.939892 #21990] FATAL -- :
|
1254
|
-
F, [2018-11-16T21:00:23.947004 #21990] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1255
|
-
F, [2018-11-16T21:00:23.947063 #21990] FATAL -- :
|
1256
|
-
F, [2018-11-16T21:00:23.947103 #21990] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1257
|
-
D, [2018-11-16T21:00:27.043912 #22017] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1258
|
-
D, [2018-11-16T21:00:27.044292 #22017] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1259
|
-
D, [2018-11-16T21:00:27.046541 #22017] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1260
|
-
D, [2018-11-16T21:00:27.046969 #22017] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1261
|
-
D, [2018-11-16T21:00:27.047408 #22017] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1262
|
-
D, [2018-11-16T21:00:27.048679 #22017] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1263
|
-
D, [2018-11-16T21:00:27.057072 #22017] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1264
|
-
D, [2018-11-16T21:00:27.060104 #22017] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1265
|
-
D, [2018-11-16T21:00:27.060983 #22017] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:00:27.060390"], ["updated_at", "2018-11-16 13:00:27.060390"]]
|
1266
|
-
D, [2018-11-16T21:00:27.061154 #22017] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1267
|
-
D, [2018-11-16T21:00:34.562001 #22039] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1268
|
-
D, [2018-11-16T21:00:34.562383 #22039] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1269
|
-
D, [2018-11-16T21:00:34.564643 #22039] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1270
|
-
D, [2018-11-16T21:00:34.565080 #22039] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1271
|
-
D, [2018-11-16T21:00:34.565523 #22039] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1272
|
-
D, [2018-11-16T21:00:34.566788 #22039] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1273
|
-
D, [2018-11-16T21:00:34.575426 #22039] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1274
|
-
D, [2018-11-16T21:00:34.578630 #22039] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1275
|
-
D, [2018-11-16T21:00:34.579577 #22039] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:00:34.578923"], ["updated_at", "2018-11-16 13:00:34.578923"]]
|
1276
|
-
D, [2018-11-16T21:00:34.579752 #22039] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1277
|
-
I, [2018-11-16T21:01:27.850594 #22039] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:01:27 +0800
|
1278
|
-
F, [2018-11-16T21:01:27.864463 #22039] FATAL -- :
|
1279
|
-
F, [2018-11-16T21:01:27.869308 #22039] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1280
|
-
F, [2018-11-16T21:01:27.869374 #22039] FATAL -- :
|
1281
|
-
F, [2018-11-16T21:01:27.869418 #22039] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1282
|
-
D, [2018-11-16T21:01:32.613234 #22056] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1283
|
-
D, [2018-11-16T21:01:32.613623 #22056] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1284
|
-
D, [2018-11-16T21:01:32.615837 #22056] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1285
|
-
D, [2018-11-16T21:01:32.616256 #22056] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1286
|
-
D, [2018-11-16T21:01:32.616671 #22056] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1287
|
-
D, [2018-11-16T21:01:32.617939 #22056] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1288
|
-
D, [2018-11-16T21:01:32.626387 #22056] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1289
|
-
D, [2018-11-16T21:01:32.629609 #22056] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1290
|
-
D, [2018-11-16T21:01:32.630664 #22056] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:01:32.629933"], ["updated_at", "2018-11-16 13:01:32.629933"]]
|
1291
|
-
D, [2018-11-16T21:01:32.630858 #22056] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1292
|
-
I, [2018-11-16T21:01:36.632396 #22056] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:01:36 +0800
|
1293
|
-
I, [2018-11-16T21:01:36.635094 #22056] INFO -- : Processing by DummyController#crash as HTML
|
1294
|
-
I, [2018-11-16T21:01:36.635535 #22056] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1295
|
-
F, [2018-11-16T21:01:36.642002 #22056] FATAL -- :
|
1296
|
-
F, [2018-11-16T21:01:36.642195 #22056] FATAL -- : NoMethodError (undefined method `user' for #<OpenStruct>):
|
1297
|
-
F, [2018-11-16T21:01:36.642235 #22056] FATAL -- :
|
1298
|
-
F, [2018-11-16T21:01:36.642265 #22056] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1299
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1300
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1301
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1302
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1303
|
-
D, [2018-11-16T21:05:40.313750 #22101] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1304
|
-
D, [2018-11-16T21:05:40.314508 #22101] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1305
|
-
D, [2018-11-16T21:05:40.316864 #22101] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1306
|
-
D, [2018-11-16T21:05:40.317290 #22101] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1307
|
-
D, [2018-11-16T21:05:40.317711 #22101] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1308
|
-
D, [2018-11-16T21:05:40.318946 #22101] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1309
|
-
D, [2018-11-16T21:05:40.326799 #22101] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1310
|
-
D, [2018-11-16T21:05:40.329537 #22101] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1311
|
-
D, [2018-11-16T21:05:40.330357 #22101] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:05:40.329808"], ["updated_at", "2018-11-16 13:05:40.329808"]]
|
1312
|
-
D, [2018-11-16T21:05:40.330526 #22101] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1313
|
-
I, [2018-11-16T21:05:40.365194 #22101] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:05:40 +0800
|
1314
|
-
F, [2018-11-16T21:05:40.377386 #22101] FATAL -- :
|
1315
|
-
F, [2018-11-16T21:05:40.386165 #22101] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1316
|
-
F, [2018-11-16T21:05:40.386224 #22101] FATAL -- :
|
1317
|
-
F, [2018-11-16T21:05:40.386252 #22101] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1318
|
-
D, [2018-11-16T21:08:15.939063 #22132] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1319
|
-
D, [2018-11-16T21:08:15.939473 #22132] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1320
|
-
D, [2018-11-16T21:08:15.941754 #22132] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1321
|
-
D, [2018-11-16T21:08:15.942224 #22132] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1322
|
-
D, [2018-11-16T21:08:15.942683 #22132] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1323
|
-
D, [2018-11-16T21:08:15.943957 #22132] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1324
|
-
D, [2018-11-16T21:08:15.951829 #22132] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1325
|
-
D, [2018-11-16T21:08:15.955049 #22132] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1326
|
-
D, [2018-11-16T21:08:15.955956 #22132] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:08:15.955347"], ["updated_at", "2018-11-16 13:08:15.955347"]]
|
1327
|
-
D, [2018-11-16T21:08:15.956133 #22132] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1328
|
-
D, [2018-11-16T21:08:23.714295 #22143] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1329
|
-
D, [2018-11-16T21:08:23.714690 #22143] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1330
|
-
D, [2018-11-16T21:08:23.716879 #22143] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1331
|
-
D, [2018-11-16T21:08:23.717462 #22143] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1332
|
-
D, [2018-11-16T21:08:23.717938 #22143] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1333
|
-
D, [2018-11-16T21:08:23.719210 #22143] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1334
|
-
D, [2018-11-16T21:08:23.727402 #22143] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1335
|
-
D, [2018-11-16T21:08:23.730796 #22143] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1336
|
-
D, [2018-11-16T21:08:23.731845 #22143] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:08:23.731093"], ["updated_at", "2018-11-16 13:08:23.731093"]]
|
1337
|
-
D, [2018-11-16T21:08:23.732101 #22143] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1338
|
-
I, [2018-11-16T21:08:23.771853 #22143] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:08:23 +0800
|
1339
|
-
F, [2018-11-16T21:08:23.783937 #22143] FATAL -- :
|
1340
|
-
F, [2018-11-16T21:08:23.788133 #22143] FATAL -- : NoMethodError (undefined method `on_request' for nil:NilClass):
|
1341
|
-
F, [2018-11-16T21:08:23.788183 #22143] FATAL -- :
|
1342
|
-
F, [2018-11-16T21:08:23.788213 #22143] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1343
|
-
D, [2018-11-16T21:09:09.784261 #22157] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1344
|
-
D, [2018-11-16T21:09:09.784637 #22157] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1345
|
-
D, [2018-11-16T21:09:09.786885 #22157] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1346
|
-
D, [2018-11-16T21:09:09.787312 #22157] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1347
|
-
D, [2018-11-16T21:09:09.787749 #22157] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1348
|
-
D, [2018-11-16T21:09:09.788998 #22157] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1349
|
-
D, [2018-11-16T21:09:09.796952 #22157] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1350
|
-
D, [2018-11-16T21:09:09.800161 #22157] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1351
|
-
D, [2018-11-16T21:09:09.801106 #22157] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:09:09.800500"], ["updated_at", "2018-11-16 13:09:09.800500"]]
|
1352
|
-
D, [2018-11-16T21:09:09.801302 #22157] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1353
|
-
D, [2018-11-16T21:09:24.506939 #22169] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1354
|
-
D, [2018-11-16T21:09:24.507375 #22169] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1355
|
-
D, [2018-11-16T21:09:24.509642 #22169] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1356
|
-
D, [2018-11-16T21:09:24.510119 #22169] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1357
|
-
D, [2018-11-16T21:09:24.510553 #22169] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1358
|
-
D, [2018-11-16T21:09:24.511780 #22169] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1359
|
-
D, [2018-11-16T21:09:24.519863 #22169] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1360
|
-
D, [2018-11-16T21:09:24.522936 #22169] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1361
|
-
D, [2018-11-16T21:09:24.523838 #22169] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:09:24.523228"], ["updated_at", "2018-11-16 13:09:24.523228"]]
|
1362
|
-
D, [2018-11-16T21:09:24.524031 #22169] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1363
|
-
I, [2018-11-16T21:09:24.564789 #22169] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:09:24 +0800
|
1364
|
-
I, [2018-11-16T21:09:24.566839 #22169] INFO -- : Processing by DummyController#crash as HTML
|
1365
|
-
I, [2018-11-16T21:09:24.567223 #22169] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1366
|
-
F, [2018-11-16T21:09:24.573196 #22169] FATAL -- :
|
1367
|
-
F, [2018-11-16T21:09:24.573951 #22169] FATAL -- : NoMethodError (undefined method `user' for #<Object:0x00007ff77909ac68>):
|
1368
|
-
F, [2018-11-16T21:09:24.574010 #22169] FATAL -- :
|
1369
|
-
F, [2018-11-16T21:09:24.574053 #22169] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1370
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1371
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1372
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1373
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1374
|
-
D, [2018-11-16T21:10:49.885381 #22193] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1375
|
-
D, [2018-11-16T21:10:49.885844 #22193] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1376
|
-
D, [2018-11-16T21:10:49.888108 #22193] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1377
|
-
D, [2018-11-16T21:10:49.888549 #22193] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1378
|
-
D, [2018-11-16T21:10:49.889036 #22193] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1379
|
-
D, [2018-11-16T21:10:49.890293 #22193] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1380
|
-
D, [2018-11-16T21:10:49.898299 #22193] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1381
|
-
D, [2018-11-16T21:10:49.901443 #22193] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1382
|
-
D, [2018-11-16T21:10:49.902354 #22193] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:10:49.901728"], ["updated_at", "2018-11-16 13:10:49.901728"]]
|
1383
|
-
D, [2018-11-16T21:10:49.902541 #22193] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1384
|
-
I, [2018-11-16T21:10:49.938725 #22193] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:10:49 +0800
|
1385
|
-
I, [2018-11-16T21:10:49.940645 #22193] INFO -- : Processing by DummyController#crash as HTML
|
1386
|
-
I, [2018-11-16T21:10:49.940989 #22193] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1387
|
-
F, [2018-11-16T21:10:49.952952 #22193] FATAL -- :
|
1388
|
-
F, [2018-11-16T21:10:49.963047 #22193] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1389
|
-
F, [2018-11-16T21:10:49.963118 #22193] FATAL -- :
|
1390
|
-
F, [2018-11-16T21:10:49.963161 #22193] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1391
|
-
D, [2018-11-16T21:12:26.921148 #22227] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1392
|
-
D, [2018-11-16T21:12:26.921545 #22227] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1393
|
-
D, [2018-11-16T21:12:26.923808 #22227] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1394
|
-
D, [2018-11-16T21:12:26.924254 #22227] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1395
|
-
D, [2018-11-16T21:12:26.924672 #22227] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1396
|
-
D, [2018-11-16T21:12:26.925989 #22227] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1397
|
-
D, [2018-11-16T21:12:26.934109 #22227] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1398
|
-
D, [2018-11-16T21:12:26.937108 #22227] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1399
|
-
D, [2018-11-16T21:12:26.938040 #22227] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:12:26.937401"], ["updated_at", "2018-11-16 13:12:26.937401"]]
|
1400
|
-
D, [2018-11-16T21:12:26.938225 #22227] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1401
|
-
D, [2018-11-16T21:12:37.039825 #22238] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1402
|
-
D, [2018-11-16T21:12:37.040230 #22238] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1403
|
-
D, [2018-11-16T21:12:37.042697 #22238] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1404
|
-
D, [2018-11-16T21:12:37.043208 #22238] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1405
|
-
D, [2018-11-16T21:12:37.043732 #22238] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1406
|
-
D, [2018-11-16T21:12:37.045231 #22238] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1407
|
-
D, [2018-11-16T21:12:37.053375 #22238] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1408
|
-
D, [2018-11-16T21:12:37.056489 #22238] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1409
|
-
D, [2018-11-16T21:12:37.057418 #22238] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:12:37.056777"], ["updated_at", "2018-11-16 13:12:37.056777"]]
|
1410
|
-
D, [2018-11-16T21:12:37.057606 #22238] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1411
|
-
I, [2018-11-16T21:12:37.092226 #22238] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:12:37 +0800
|
1412
|
-
I, [2018-11-16T21:12:37.094188 #22238] INFO -- : Processing by DummyController#crash as HTML
|
1413
|
-
I, [2018-11-16T21:12:37.094534 #22238] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1414
|
-
F, [2018-11-16T21:12:37.105787 #22238] FATAL -- :
|
1415
|
-
F, [2018-11-16T21:12:37.115140 #22238] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1416
|
-
F, [2018-11-16T21:12:37.115197 #22238] FATAL -- :
|
1417
|
-
F, [2018-11-16T21:12:37.115230 #22238] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1418
|
-
D, [2018-11-16T21:15:24.865500 #22270] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1419
|
-
D, [2018-11-16T21:15:24.865945 #22270] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1420
|
-
D, [2018-11-16T21:15:24.868248 #22270] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1421
|
-
D, [2018-11-16T21:15:24.868739 #22270] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1422
|
-
D, [2018-11-16T21:15:24.869176 #22270] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1423
|
-
D, [2018-11-16T21:15:24.870491 #22270] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1424
|
-
D, [2018-11-16T21:15:24.878441 #22270] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1425
|
-
D, [2018-11-16T21:15:24.881379 #22270] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1426
|
-
D, [2018-11-16T21:15:24.882366 #22270] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:15:24.881734"], ["updated_at", "2018-11-16 13:15:24.881734"]]
|
1427
|
-
D, [2018-11-16T21:15:24.882550 #22270] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1428
|
-
I, [2018-11-16T21:15:24.922067 #22270] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:15:24 +0800
|
1429
|
-
I, [2018-11-16T21:15:24.923973 #22270] INFO -- : Processing by DummyController#crash as HTML
|
1430
|
-
I, [2018-11-16T21:15:24.924332 #22270] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1431
|
-
F, [2018-11-16T21:15:24.936198 #22270] FATAL -- :
|
1432
|
-
F, [2018-11-16T21:15:24.941273 #22270] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1433
|
-
F, [2018-11-16T21:15:24.941339 #22270] FATAL -- :
|
1434
|
-
F, [2018-11-16T21:15:24.941382 #22270] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1435
|
-
D, [2018-11-16T21:16:03.034711 #22284] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1436
|
-
D, [2018-11-16T21:16:03.035108 #22284] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1437
|
-
D, [2018-11-16T21:16:03.037394 #22284] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1438
|
-
D, [2018-11-16T21:16:03.037849 #22284] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1439
|
-
D, [2018-11-16T21:16:03.038307 #22284] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1440
|
-
D, [2018-11-16T21:16:03.039605 #22284] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1441
|
-
D, [2018-11-16T21:16:03.047361 #22284] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1442
|
-
D, [2018-11-16T21:16:03.050509 #22284] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1443
|
-
D, [2018-11-16T21:16:03.051376 #22284] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:16:03.050794"], ["updated_at", "2018-11-16 13:16:03.050794"]]
|
1444
|
-
D, [2018-11-16T21:16:03.051552 #22284] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1445
|
-
I, [2018-11-16T21:16:03.086305 #22284] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:16:03 +0800
|
1446
|
-
I, [2018-11-16T21:16:03.088104 #22284] INFO -- : Processing by DummyController#crash as HTML
|
1447
|
-
I, [2018-11-16T21:16:03.088442 #22284] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1448
|
-
F, [2018-11-16T21:16:03.093604 #22284] FATAL -- :
|
1449
|
-
F, [2018-11-16T21:16:03.093686 #22284] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double Warden::Proxy> received unexpected message :user with ({:run_callbacks=>false})):
|
1450
|
-
F, [2018-11-16T21:16:03.093740 #22284] FATAL -- :
|
1451
|
-
F, [2018-11-16T21:16:03.093769 #22284] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1452
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1453
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1454
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1455
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1456
|
-
D, [2018-11-16T21:18:07.471366 #22321] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1457
|
-
D, [2018-11-16T21:18:07.471797 #22321] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1458
|
-
D, [2018-11-16T21:18:07.474047 #22321] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1459
|
-
D, [2018-11-16T21:18:07.474549 #22321] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1460
|
-
D, [2018-11-16T21:18:07.474986 #22321] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1461
|
-
D, [2018-11-16T21:18:07.476268 #22321] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1462
|
-
D, [2018-11-16T21:18:07.484043 #22321] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1463
|
-
D, [2018-11-16T21:18:07.486911 #22321] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1464
|
-
D, [2018-11-16T21:18:07.487791 #22321] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:18:07.487200"], ["updated_at", "2018-11-16 13:18:07.487200"]]
|
1465
|
-
D, [2018-11-16T21:18:07.487993 #22321] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1466
|
-
I, [2018-11-16T21:18:07.522724 #22321] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:18:07 +0800
|
1467
|
-
F, [2018-11-16T21:18:07.527938 #22321] FATAL -- :
|
1468
|
-
F, [2018-11-16T21:18:07.528012 #22321] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double Warden::Proxy> received unexpected message :user with ({:run_callbacks=>false})):
|
1469
|
-
F, [2018-11-16T21:18:07.528055 #22321] FATAL -- :
|
1470
|
-
F, [2018-11-16T21:18:07.528085 #22321] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1471
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1472
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1473
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1474
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1475
|
-
D, [2018-11-16T21:21:24.440498 #22354] DEBUG -- : [1m[35m (1.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1476
|
-
D, [2018-11-16T21:21:24.441227 #22354] DEBUG -- : [1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1477
|
-
D, [2018-11-16T21:21:24.444589 #22354] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1478
|
-
D, [2018-11-16T21:21:24.445130 #22354] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1479
|
-
D, [2018-11-16T21:21:24.445663 #22354] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1480
|
-
D, [2018-11-16T21:21:24.448200 #22354] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1481
|
-
D, [2018-11-16T21:21:24.461405 #22354] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1482
|
-
D, [2018-11-16T21:21:24.465013 #22354] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1483
|
-
D, [2018-11-16T21:21:24.465914 #22354] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:21:24.465306"], ["updated_at", "2018-11-16 13:21:24.465306"]]
|
1484
|
-
D, [2018-11-16T21:21:24.466097 #22354] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1485
|
-
I, [2018-11-16T21:21:24.510449 #22354] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:21:24 +0800
|
1486
|
-
F, [2018-11-16T21:21:24.516294 #22354] FATAL -- :
|
1487
|
-
F, [2018-11-16T21:21:24.516371 #22354] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double Warden::Proxy> received unexpected message :user with ({:run_callbacks=>false})):
|
1488
|
-
F, [2018-11-16T21:21:24.516403 #22354] FATAL -- :
|
1489
|
-
F, [2018-11-16T21:21:24.516434 #22354] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1490
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1491
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1492
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1493
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1494
|
-
D, [2018-11-16T21:21:45.279135 #22367] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1495
|
-
D, [2018-11-16T21:21:45.279546 #22367] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1496
|
-
D, [2018-11-16T21:21:45.281755 #22367] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1497
|
-
D, [2018-11-16T21:21:45.282321 #22367] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1498
|
-
D, [2018-11-16T21:21:45.282805 #22367] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1499
|
-
D, [2018-11-16T21:21:45.284070 #22367] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1500
|
-
D, [2018-11-16T21:21:45.292007 #22367] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1501
|
-
D, [2018-11-16T21:21:45.295000 #22367] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1502
|
-
D, [2018-11-16T21:21:45.295838 #22367] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:21:45.295270"], ["updated_at", "2018-11-16 13:21:45.295270"]]
|
1503
|
-
D, [2018-11-16T21:21:45.296058 #22367] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1504
|
-
I, [2018-11-16T21:21:45.335121 #22367] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:21:45 +0800
|
1505
|
-
F, [2018-11-16T21:21:45.346143 #22367] FATAL -- :
|
1506
|
-
F, [2018-11-16T21:21:45.350468 #22367] FATAL -- : RSpec::Mocks::MockExpectationError ((nil).on_request(no args)
|
1507
|
-
expected: 0 times with any arguments
|
1508
|
-
received: 1 time):
|
1509
|
-
F, [2018-11-16T21:21:45.350513 #22367] FATAL -- :
|
1510
|
-
F, [2018-11-16T21:21:45.350541 #22367] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1511
|
-
D, [2018-11-16T21:22:05.992604 #22379] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1512
|
-
D, [2018-11-16T21:22:05.992988 #22379] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1513
|
-
D, [2018-11-16T21:22:05.995207 #22379] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1514
|
-
D, [2018-11-16T21:22:05.995626 #22379] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1515
|
-
D, [2018-11-16T21:22:05.996111 #22379] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1516
|
-
D, [2018-11-16T21:22:05.997450 #22379] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1517
|
-
D, [2018-11-16T21:22:06.005560 #22379] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1518
|
-
D, [2018-11-16T21:22:06.009191 #22379] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1519
|
-
D, [2018-11-16T21:22:06.010126 #22379] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:22:06.009500"], ["updated_at", "2018-11-16 13:22:06.009500"]]
|
1520
|
-
D, [2018-11-16T21:22:06.010321 #22379] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1521
|
-
I, [2018-11-16T21:22:06.046462 #22379] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:22:06 +0800
|
1522
|
-
I, [2018-11-16T21:22:06.048352 #22379] INFO -- : Processing by DummyController#crash as HTML
|
1523
|
-
I, [2018-11-16T21:22:06.048696 #22379] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1524
|
-
F, [2018-11-16T21:22:06.063653 #22379] FATAL -- :
|
1525
|
-
F, [2018-11-16T21:22:06.068513 #22379] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1526
|
-
F, [2018-11-16T21:22:06.068581 #22379] FATAL -- :
|
1527
|
-
F, [2018-11-16T21:22:06.068613 #22379] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1528
|
-
D, [2018-11-16T21:22:44.625165 #22399] DEBUG -- : [1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1529
|
-
D, [2018-11-16T21:22:44.625729 #22399] DEBUG -- : [1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1530
|
-
D, [2018-11-16T21:22:44.628454 #22399] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1531
|
-
D, [2018-11-16T21:22:44.628973 #22399] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1532
|
-
D, [2018-11-16T21:22:44.629455 #22399] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1533
|
-
D, [2018-11-16T21:22:44.630831 #22399] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1534
|
-
D, [2018-11-16T21:22:44.641796 #22399] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1535
|
-
D, [2018-11-16T21:22:44.645046 #22399] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1536
|
-
D, [2018-11-16T21:22:44.645980 #22399] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:22:44.645345"], ["updated_at", "2018-11-16 13:22:44.645345"]]
|
1537
|
-
D, [2018-11-16T21:22:44.646185 #22399] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1538
|
-
I, [2018-11-16T21:22:44.681032 #22399] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:22:44 +0800
|
1539
|
-
I, [2018-11-16T21:22:44.682926 #22399] INFO -- : Processing by DummyController#crash as HTML
|
1540
|
-
I, [2018-11-16T21:22:44.683282 #22399] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1541
|
-
F, [2018-11-16T21:22:44.688047 #22399] FATAL -- :
|
1542
|
-
F, [2018-11-16T21:22:44.688125 #22399] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double (anonymous)> received unexpected message :user with ({:run_callbacks=>false})):
|
1543
|
-
F, [2018-11-16T21:22:44.688165 #22399] FATAL -- :
|
1544
|
-
F, [2018-11-16T21:22:44.688197 #22399] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1545
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1546
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1547
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1548
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1549
|
-
D, [2018-11-16T21:22:56.496971 #22410] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1550
|
-
D, [2018-11-16T21:22:56.497395 #22410] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1551
|
-
D, [2018-11-16T21:22:56.499602 #22410] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1552
|
-
D, [2018-11-16T21:22:56.500057 #22410] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1553
|
-
D, [2018-11-16T21:22:56.500538 #22410] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1554
|
-
D, [2018-11-16T21:22:56.501949 #22410] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1555
|
-
D, [2018-11-16T21:22:56.509996 #22410] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1556
|
-
D, [2018-11-16T21:22:56.512824 #22410] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1557
|
-
D, [2018-11-16T21:22:56.513678 #22410] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:22:56.513112"], ["updated_at", "2018-11-16 13:22:56.513112"]]
|
1558
|
-
D, [2018-11-16T21:22:56.513880 #22410] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1559
|
-
I, [2018-11-16T21:22:56.549656 #22410] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:22:56 +0800
|
1560
|
-
I, [2018-11-16T21:22:56.551733 #22410] INFO -- : Processing by DummyController#crash as HTML
|
1561
|
-
I, [2018-11-16T21:22:56.552068 #22410] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1562
|
-
F, [2018-11-16T21:22:56.557046 #22410] FATAL -- :
|
1563
|
-
F, [2018-11-16T21:22:56.557142 #22410] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double (anonymous)> received unexpected message :user with ({:run_callbacks=>false})):
|
1564
|
-
F, [2018-11-16T21:22:56.557188 #22410] FATAL -- :
|
1565
|
-
F, [2018-11-16T21:22:56.557214 #22410] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1566
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1567
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1568
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1569
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1570
|
-
D, [2018-11-16T21:23:17.447281 #22422] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1571
|
-
D, [2018-11-16T21:23:17.447683 #22422] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1572
|
-
D, [2018-11-16T21:23:17.450023 #22422] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1573
|
-
D, [2018-11-16T21:23:17.450484 #22422] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1574
|
-
D, [2018-11-16T21:23:17.450905 #22422] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1575
|
-
D, [2018-11-16T21:23:17.452203 #22422] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1576
|
-
D, [2018-11-16T21:23:17.460183 #22422] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1577
|
-
D, [2018-11-16T21:23:17.463074 #22422] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1578
|
-
D, [2018-11-16T21:23:17.463977 #22422] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:23:17.463388"], ["updated_at", "2018-11-16 13:23:17.463388"]]
|
1579
|
-
D, [2018-11-16T21:23:17.464156 #22422] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1580
|
-
I, [2018-11-16T21:23:17.498360 #22422] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:23:17 +0800
|
1581
|
-
I, [2018-11-16T21:23:17.500394 #22422] INFO -- : Processing by DummyController#crash as HTML
|
1582
|
-
I, [2018-11-16T21:23:17.500738 #22422] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1583
|
-
F, [2018-11-16T21:23:17.505472 #22422] FATAL -- :
|
1584
|
-
F, [2018-11-16T21:23:17.505573 #22422] FATAL -- : RSpec::Mocks::MockExpectationError (#<Double (anonymous)> received unexpected message :user with ({:run_callbacks=>false})):
|
1585
|
-
F, [2018-11-16T21:23:17.505612 #22422] FATAL -- :
|
1586
|
-
F, [2018-11-16T21:23:17.505641 #22422] FATAL -- : lib/airbrake/rack/user.rb:13:in `extract'
|
1587
|
-
lib/airbrake/rack/context_filter.rb:43:in `call'
|
1588
|
-
lib/airbrake/rack/middleware.rb:84:in `notify_airbrake'
|
1589
|
-
lib/airbrake/rack/middleware.rb:56:in `rescue in call'
|
1590
|
-
lib/airbrake/rack/middleware.rb:53:in `call'
|
1591
|
-
D, [2018-11-16T21:24:01.734687 #22437] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1592
|
-
D, [2018-11-16T21:24:01.735089 #22437] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1593
|
-
D, [2018-11-16T21:24:01.737390 #22437] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1594
|
-
D, [2018-11-16T21:24:01.737854 #22437] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1595
|
-
D, [2018-11-16T21:24:01.738331 #22437] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1596
|
-
D, [2018-11-16T21:24:01.739608 #22437] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1597
|
-
D, [2018-11-16T21:24:01.748228 #22437] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1598
|
-
D, [2018-11-16T21:24:01.751678 #22437] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1599
|
-
D, [2018-11-16T21:24:01.752659 #22437] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-16 13:24:01.752000"], ["updated_at", "2018-11-16 13:24:01.752000"]]
|
1600
|
-
D, [2018-11-16T21:24:01.752854 #22437] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1601
|
-
I, [2018-11-16T21:24:01.788470 #22437] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 21:24:01 +0800
|
1602
|
-
I, [2018-11-16T21:24:01.790578 #22437] INFO -- : Processing by DummyController#crash as HTML
|
1603
|
-
I, [2018-11-16T21:24:01.790964 #22437] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1604
|
-
F, [2018-11-16T21:24:01.802302 #22437] FATAL -- :
|
1605
|
-
F, [2018-11-16T21:24:01.810809 #22437] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1606
|
-
F, [2018-11-16T21:24:01.810867 #22437] FATAL -- :
|
1607
|
-
F, [2018-11-16T21:24:01.810900 #22437] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1608
|
-
D, [2018-11-20T20:27:41.554392 #64038] DEBUG -- : [1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1609
|
-
D, [2018-11-20T20:27:41.555480 #64038] DEBUG -- : [1m[35m (0.7ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1610
|
-
D, [2018-11-20T20:27:41.559949 #64038] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1611
|
-
D, [2018-11-20T20:27:41.560669 #64038] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1612
|
-
D, [2018-11-20T20:27:41.561296 #64038] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1613
|
-
D, [2018-11-20T20:27:41.563302 #64038] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1614
|
-
D, [2018-11-20T20:27:41.574671 #64038] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1615
|
-
D, [2018-11-20T20:27:41.577709 #64038] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1616
|
-
D, [2018-11-20T20:27:41.578605 #64038] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:27:41.577964"], ["updated_at", "2018-11-20 12:27:41.577964"]]
|
1617
|
-
D, [2018-11-20T20:27:41.578790 #64038] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1618
|
-
I, [2018-11-20T20:27:41.622285 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:27:41 +0800
|
1619
|
-
I, [2018-11-20T20:27:41.624352 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1620
|
-
I, [2018-11-20T20:27:41.624740 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1621
|
-
F, [2018-11-20T20:27:41.637301 #64038] FATAL -- :
|
1622
|
-
F, [2018-11-20T20:27:41.642043 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1623
|
-
F, [2018-11-20T20:27:41.642111 #64038] FATAL -- :
|
1624
|
-
F, [2018-11-20T20:27:41.642155 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1625
|
-
I, [2018-11-20T20:27:43.648635 #64038] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:27:43 +0800
|
1626
|
-
I, [2018-11-20T20:27:43.657926 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1627
|
-
I, [2018-11-20T20:27:43.658338 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1628
|
-
F, [2018-11-20T20:27:43.663880 #64038] FATAL -- :
|
1629
|
-
F, [2018-11-20T20:27:43.668061 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1630
|
-
F, [2018-11-20T20:27:43.668108 #64038] FATAL -- :
|
1631
|
-
F, [2018-11-20T20:27:43.668135 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1632
|
-
I, [2018-11-20T20:27:48.680394 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1633
|
-
I, [2018-11-20T20:27:48.681549 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1634
|
-
I, [2018-11-20T20:27:48.681608 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1635
|
-
I, [2018-11-20T20:27:48.695181 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1636
|
-
I, [2018-11-20T20:27:48.696211 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.9ms)
|
1637
|
-
I, [2018-11-20T20:27:48.696643 #64038] INFO -- : Completed 200 OK in 15ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
1638
|
-
I, [2018-11-20T20:27:48.699592 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1639
|
-
I, [2018-11-20T20:27:48.700477 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1640
|
-
I, [2018-11-20T20:27:48.700519 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1641
|
-
I, [2018-11-20T20:27:48.708726 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1642
|
-
I, [2018-11-20T20:27:48.708991 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1643
|
-
I, [2018-11-20T20:27:48.709278 #64038] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1644
|
-
I, [2018-11-20T20:27:48.711691 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1645
|
-
I, [2018-11-20T20:27:48.712653 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1646
|
-
I, [2018-11-20T20:27:48.712709 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1647
|
-
I, [2018-11-20T20:27:48.721684 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1648
|
-
I, [2018-11-20T20:27:48.722012 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1649
|
-
I, [2018-11-20T20:27:48.722289 #64038] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1650
|
-
I, [2018-11-20T20:27:48.724734 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1651
|
-
I, [2018-11-20T20:27:48.725526 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1652
|
-
I, [2018-11-20T20:27:48.725565 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1653
|
-
I, [2018-11-20T20:27:48.735624 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1654
|
-
I, [2018-11-20T20:27:48.735951 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1655
|
-
I, [2018-11-20T20:27:48.736271 #64038] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1656
|
-
I, [2018-11-20T20:27:48.738732 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1657
|
-
I, [2018-11-20T20:27:48.739564 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1658
|
-
I, [2018-11-20T20:27:48.739603 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1659
|
-
I, [2018-11-20T20:27:48.749024 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1660
|
-
I, [2018-11-20T20:27:48.749268 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1661
|
-
I, [2018-11-20T20:27:48.749561 #64038] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1662
|
-
I, [2018-11-20T20:27:48.751739 #64038] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1663
|
-
I, [2018-11-20T20:27:48.752449 #64038] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1664
|
-
I, [2018-11-20T20:27:48.752489 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1665
|
-
I, [2018-11-20T20:27:48.761183 #64038] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1666
|
-
I, [2018-11-20T20:27:48.761501 #64038] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1667
|
-
I, [2018-11-20T20:27:48.761882 #64038] INFO -- : Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1668
|
-
I, [2018-11-20T20:27:48.766568 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1669
|
-
I, [2018-11-20T20:27:48.767632 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1670
|
-
I, [2018-11-20T20:27:48.767688 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1671
|
-
I, [2018-11-20T20:27:48.774930 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1672
|
-
I, [2018-11-20T20:27:48.780798 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
1673
|
-
I, [2018-11-20T20:27:48.781290 #64038] INFO -- : Completed 200 OK in 14ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
1674
|
-
I, [2018-11-20T20:27:48.783795 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1675
|
-
I, [2018-11-20T20:27:48.784566 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1676
|
-
I, [2018-11-20T20:27:48.784611 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1677
|
-
I, [2018-11-20T20:27:48.789110 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1678
|
-
I, [2018-11-20T20:27:48.789325 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1679
|
-
I, [2018-11-20T20:27:48.789627 #64038] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1680
|
-
I, [2018-11-20T20:27:48.898289 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1681
|
-
I, [2018-11-20T20:27:48.899724 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1682
|
-
I, [2018-11-20T20:27:48.899777 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1683
|
-
I, [2018-11-20T20:27:48.909876 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1684
|
-
I, [2018-11-20T20:27:48.910137 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1685
|
-
I, [2018-11-20T20:27:48.910400 #64038] INFO -- : Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1686
|
-
I, [2018-11-20T20:27:48.912610 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1687
|
-
I, [2018-11-20T20:27:48.913544 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1688
|
-
I, [2018-11-20T20:27:48.913591 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1689
|
-
I, [2018-11-20T20:27:48.918666 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1690
|
-
I, [2018-11-20T20:27:48.922565 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1691
|
-
I, [2018-11-20T20:27:48.922834 #64038] INFO -- : Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
1692
|
-
I, [2018-11-20T20:27:48.925207 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1693
|
-
I, [2018-11-20T20:27:48.926015 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1694
|
-
I, [2018-11-20T20:27:48.926052 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1695
|
-
I, [2018-11-20T20:27:48.931665 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1696
|
-
I, [2018-11-20T20:27:48.936342 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1697
|
-
I, [2018-11-20T20:27:48.936619 #64038] INFO -- : Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
1698
|
-
I, [2018-11-20T20:27:48.939057 #64038] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1699
|
-
I, [2018-11-20T20:27:48.939835 #64038] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1700
|
-
I, [2018-11-20T20:27:48.939872 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1701
|
-
I, [2018-11-20T20:27:48.944452 #64038] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1702
|
-
I, [2018-11-20T20:27:48.944658 #64038] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.1ms)
|
1703
|
-
I, [2018-11-20T20:27:48.944993 #64038] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1704
|
-
I, [2018-11-20T20:27:48.952015 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1705
|
-
I, [2018-11-20T20:27:48.952841 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1706
|
-
I, [2018-11-20T20:27:48.952884 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1707
|
-
I, [2018-11-20T20:27:48.953160 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1708
|
-
F, [2018-11-20T20:27:48.958602 #64038] FATAL -- :
|
1709
|
-
F, [2018-11-20T20:27:48.963062 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1710
|
-
F, [2018-11-20T20:27:48.963131 #64038] FATAL -- :
|
1711
|
-
F, [2018-11-20T20:27:48.963167 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1712
|
-
I, [2018-11-20T20:27:48.967179 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1713
|
-
I, [2018-11-20T20:27:48.968190 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1714
|
-
I, [2018-11-20T20:27:48.968233 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1715
|
-
I, [2018-11-20T20:27:48.968535 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1716
|
-
F, [2018-11-20T20:27:48.973427 #64038] FATAL -- :
|
1717
|
-
F, [2018-11-20T20:27:48.980314 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1718
|
-
F, [2018-11-20T20:27:48.980357 #64038] FATAL -- :
|
1719
|
-
F, [2018-11-20T20:27:48.980385 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1720
|
-
I, [2018-11-20T20:27:48.982943 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1721
|
-
I, [2018-11-20T20:27:48.983784 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1722
|
-
I, [2018-11-20T20:27:48.983825 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1723
|
-
I, [2018-11-20T20:27:48.984094 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1724
|
-
F, [2018-11-20T20:27:48.988687 #64038] FATAL -- :
|
1725
|
-
F, [2018-11-20T20:27:48.992831 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1726
|
-
F, [2018-11-20T20:27:48.992858 #64038] FATAL -- :
|
1727
|
-
F, [2018-11-20T20:27:48.992885 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1728
|
-
I, [2018-11-20T20:27:48.994528 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:48 +0800
|
1729
|
-
I, [2018-11-20T20:27:48.995371 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1730
|
-
I, [2018-11-20T20:27:48.995415 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1731
|
-
I, [2018-11-20T20:27:48.995671 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1732
|
-
F, [2018-11-20T20:27:49.000461 #64038] FATAL -- :
|
1733
|
-
F, [2018-11-20T20:27:49.000503 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1734
|
-
F, [2018-11-20T20:27:49.000541 #64038] FATAL -- :
|
1735
|
-
F, [2018-11-20T20:27:49.000585 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1736
|
-
I, [2018-11-20T20:27:49.109276 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:49 +0800
|
1737
|
-
I, [2018-11-20T20:27:49.110657 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1738
|
-
I, [2018-11-20T20:27:49.110722 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1739
|
-
I, [2018-11-20T20:27:49.111060 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1740
|
-
F, [2018-11-20T20:27:49.121255 #64038] FATAL -- :
|
1741
|
-
F, [2018-11-20T20:27:49.121309 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1742
|
-
F, [2018-11-20T20:27:49.121331 #64038] FATAL -- :
|
1743
|
-
F, [2018-11-20T20:27:49.121351 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1744
|
-
I, [2018-11-20T20:27:49.123270 #64038] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:27:49 +0800
|
1745
|
-
I, [2018-11-20T20:27:49.124129 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1746
|
-
I, [2018-11-20T20:27:49.124168 #64038] INFO -- : Parameters: {"foo"=>"bar"}
|
1747
|
-
I, [2018-11-20T20:27:49.124421 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1748
|
-
F, [2018-11-20T20:27:49.128719 #64038] FATAL -- :
|
1749
|
-
F, [2018-11-20T20:27:49.133508 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1750
|
-
F, [2018-11-20T20:27:49.133557 #64038] FATAL -- :
|
1751
|
-
F, [2018-11-20T20:27:49.133583 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1752
|
-
I, [2018-11-20T20:27:49.135750 #64038] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-20 20:27:49 +0800
|
1753
|
-
I, [2018-11-20T20:27:49.136498 #64038] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
1754
|
-
D, [2018-11-20T20:27:49.138898 #64038] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1755
|
-
D, [2018-11-20T20:27:49.139475 #64038] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
1756
|
-
D, [2018-11-20T20:27:49.139693 #64038] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1757
|
-
I, [2018-11-20T20:27:49.144043 #64038] INFO -- : Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.5ms)
|
1758
|
-
F, [2018-11-20T20:27:49.153972 #64038] FATAL -- :
|
1759
|
-
F, [2018-11-20T20:27:49.157763 #64038] FATAL -- : AirbrakeTestError (after_commit):
|
1760
|
-
F, [2018-11-20T20:27:49.157793 #64038] FATAL -- :
|
1761
|
-
F, [2018-11-20T20:27:49.157817 #64038] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
1762
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1763
|
-
I, [2018-11-20T20:27:51.164941 #64038] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-20 20:27:51 +0800
|
1764
|
-
I, [2018-11-20T20:27:51.166127 #64038] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
1765
|
-
D, [2018-11-20T20:27:51.166455 #64038] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1766
|
-
D, [2018-11-20T20:27:51.167230 #64038] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
1767
|
-
D, [2018-11-20T20:27:51.167483 #64038] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1768
|
-
I, [2018-11-20T20:27:51.176483 #64038] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms)
|
1769
|
-
F, [2018-11-20T20:27:51.193070 #64038] FATAL -- :
|
1770
|
-
F, [2018-11-20T20:27:51.199763 #64038] FATAL -- : AirbrakeTestError (after_rollback):
|
1771
|
-
F, [2018-11-20T20:27:51.199863 #64038] FATAL -- :
|
1772
|
-
F, [2018-11-20T20:27:51.199888 #64038] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
1773
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1774
|
-
I, [2018-11-20T20:27:53.209403 #64038] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1775
|
-
I, [2018-11-20T20:27:53.210453 #64038] INFO -- : Processing by DummyController#resque as HTML
|
1776
|
-
I, [2018-11-20T20:27:53.220603 #64038] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1777
|
-
I, [2018-11-20T20:27:53.220878 #64038] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
1778
|
-
I, [2018-11-20T20:27:53.221166 #64038] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1779
|
-
I, [2018-11-20T20:27:53.223476 #64038] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1780
|
-
I, [2018-11-20T20:27:53.224197 #64038] INFO -- : Processing by DummyController#resque as HTML
|
1781
|
-
I, [2018-11-20T20:27:53.225155 #64038] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1782
|
-
I, [2018-11-20T20:27:53.225350 #64038] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.1ms)
|
1783
|
-
I, [2018-11-20T20:27:53.225609 #64038] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1784
|
-
I, [2018-11-20T20:27:53.228499 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1785
|
-
I, [2018-11-20T20:27:53.229559 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1786
|
-
I, [2018-11-20T20:27:53.229867 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1787
|
-
F, [2018-11-20T20:27:53.235348 #64038] FATAL -- :
|
1788
|
-
F, [2018-11-20T20:27:53.238985 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1789
|
-
F, [2018-11-20T20:27:53.239047 #64038] FATAL -- :
|
1790
|
-
F, [2018-11-20T20:27:53.239071 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1791
|
-
I, [2018-11-20T20:27:53.241436 #64038] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1792
|
-
I, [2018-11-20T20:27:53.242217 #64038] INFO -- : Processing by DummyController#index as HTML
|
1793
|
-
I, [2018-11-20T20:27:53.243022 #64038] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1794
|
-
I, [2018-11-20T20:27:53.243315 #64038] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
1795
|
-
I, [2018-11-20T20:27:53.243611 #64038] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1796
|
-
I, [2018-11-20T20:27:53.245168 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1797
|
-
I, [2018-11-20T20:27:53.245816 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1798
|
-
I, [2018-11-20T20:27:53.246073 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1799
|
-
F, [2018-11-20T20:27:53.250620 #64038] FATAL -- :
|
1800
|
-
F, [2018-11-20T20:27:53.254247 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1801
|
-
F, [2018-11-20T20:27:53.254277 #64038] FATAL -- :
|
1802
|
-
F, [2018-11-20T20:27:53.254304 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1803
|
-
I, [2018-11-20T20:27:53.256360 #64038] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:27:53 +0800
|
1804
|
-
I, [2018-11-20T20:27:53.256962 #64038] INFO -- : Processing by DummyController#active_job as HTML
|
1805
|
-
I, [2018-11-20T20:27:53.257857 #64038] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1806
|
-
I, [2018-11-20T20:27:53.258075 #64038] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1807
|
-
I, [2018-11-20T20:27:53.258325 #64038] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1808
|
-
I, [2018-11-20T20:27:55.266405 #64038] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:27:55 +0800
|
1809
|
-
I, [2018-11-20T20:27:55.267585 #64038] INFO -- : Processing by DummyController#active_job as HTML
|
1810
|
-
I, [2018-11-20T20:27:55.268728 #64038] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1811
|
-
I, [2018-11-20T20:27:55.270967 #64038] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1812
|
-
I, [2018-11-20T20:27:55.274123 #64038] INFO -- : Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
1813
|
-
I, [2018-11-20T20:27:57.281740 #64038] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:27:57 +0800
|
1814
|
-
I, [2018-11-20T20:27:57.282673 #64038] INFO -- : Processing by DummyController#active_job as HTML
|
1815
|
-
I, [2018-11-20T20:27:57.283825 #64038] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1816
|
-
I, [2018-11-20T20:27:57.284654 #64038] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1817
|
-
I, [2018-11-20T20:27:57.284995 #64038] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1818
|
-
I, [2018-11-20T20:27:59.291005 #64038] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:27:59 +0800
|
1819
|
-
I, [2018-11-20T20:27:59.292396 #64038] INFO -- : Processing by DummyController#delayed_job as HTML
|
1820
|
-
I, [2018-11-20T20:27:59.312297 #64038] INFO -- : Completed 500 Internal Server Error in 20ms (ActiveRecord: 2.9ms)
|
1821
|
-
F, [2018-11-20T20:27:59.316865 #64038] FATAL -- :
|
1822
|
-
F, [2018-11-20T20:27:59.320624 #64038] FATAL -- : AirbrakeTestError (delayed_job error):
|
1823
|
-
F, [2018-11-20T20:27:59.320670 #64038] FATAL -- :
|
1824
|
-
F, [2018-11-20T20:27:59.320698 #64038] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
1825
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1826
|
-
I, [2018-11-20T20:28:03.332971 #64038] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:28:03 +0800
|
1827
|
-
I, [2018-11-20T20:28:03.333914 #64038] INFO -- : Processing by DummyController#delayed_job as HTML
|
1828
|
-
I, [2018-11-20T20:28:03.334861 #64038] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1829
|
-
F, [2018-11-20T20:28:03.336162 #64038] FATAL -- :
|
1830
|
-
F, [2018-11-20T20:28:03.336208 #64038] FATAL -- : AirbrakeTestError (delayed_job error):
|
1831
|
-
F, [2018-11-20T20:28:03.336238 #64038] FATAL -- :
|
1832
|
-
F, [2018-11-20T20:28:03.336267 #64038] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
1833
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
1834
|
-
I, [2018-11-20T20:28:05.343856 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1835
|
-
I, [2018-11-20T20:28:05.345068 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1836
|
-
I, [2018-11-20T20:28:05.345473 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1837
|
-
F, [2018-11-20T20:28:05.355970 #64038] FATAL -- :
|
1838
|
-
F, [2018-11-20T20:28:05.356061 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1839
|
-
F, [2018-11-20T20:28:05.356088 #64038] FATAL -- :
|
1840
|
-
F, [2018-11-20T20:28:05.356115 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1841
|
-
I, [2018-11-20T20:28:05.358434 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1842
|
-
I, [2018-11-20T20:28:05.359228 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1843
|
-
I, [2018-11-20T20:28:05.359491 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1844
|
-
F, [2018-11-20T20:28:05.364459 #64038] FATAL -- :
|
1845
|
-
F, [2018-11-20T20:28:05.364542 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1846
|
-
F, [2018-11-20T20:28:05.364590 #64038] FATAL -- :
|
1847
|
-
F, [2018-11-20T20:28:05.364618 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1848
|
-
I, [2018-11-20T20:28:05.369803 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1849
|
-
I, [2018-11-20T20:28:05.370372 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1850
|
-
I, [2018-11-20T20:28:05.370620 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1851
|
-
F, [2018-11-20T20:28:05.376021 #64038] FATAL -- :
|
1852
|
-
F, [2018-11-20T20:28:05.380482 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1853
|
-
F, [2018-11-20T20:28:05.380533 #64038] FATAL -- :
|
1854
|
-
F, [2018-11-20T20:28:05.380560 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1855
|
-
I, [2018-11-20T20:28:05.382149 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1856
|
-
I, [2018-11-20T20:28:05.382716 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1857
|
-
I, [2018-11-20T20:28:05.382934 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1858
|
-
F, [2018-11-20T20:28:05.387715 #64038] FATAL -- :
|
1859
|
-
F, [2018-11-20T20:28:05.393556 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1860
|
-
F, [2018-11-20T20:28:05.393611 #64038] FATAL -- :
|
1861
|
-
F, [2018-11-20T20:28:05.393639 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1862
|
-
I, [2018-11-20T20:28:05.396047 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1863
|
-
I, [2018-11-20T20:28:05.396899 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1864
|
-
I, [2018-11-20T20:28:05.397237 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1865
|
-
F, [2018-11-20T20:28:05.402001 #64038] FATAL -- :
|
1866
|
-
F, [2018-11-20T20:28:05.402042 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1867
|
-
F, [2018-11-20T20:28:05.402088 #64038] FATAL -- :
|
1868
|
-
F, [2018-11-20T20:28:05.408781 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1869
|
-
I, [2018-11-20T20:28:05.410423 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1870
|
-
I, [2018-11-20T20:28:05.411101 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1871
|
-
I, [2018-11-20T20:28:05.411390 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1872
|
-
F, [2018-11-20T20:28:05.416211 #64038] FATAL -- :
|
1873
|
-
F, [2018-11-20T20:28:05.419954 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1874
|
-
F, [2018-11-20T20:28:05.419986 #64038] FATAL -- :
|
1875
|
-
F, [2018-11-20T20:28:05.420014 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1876
|
-
I, [2018-11-20T20:28:05.423216 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1877
|
-
I, [2018-11-20T20:28:05.424343 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1878
|
-
I, [2018-11-20T20:28:05.424679 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1879
|
-
F, [2018-11-20T20:28:05.429848 #64038] FATAL -- :
|
1880
|
-
F, [2018-11-20T20:28:05.433840 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1881
|
-
F, [2018-11-20T20:28:05.433919 #64038] FATAL -- :
|
1882
|
-
F, [2018-11-20T20:28:05.433995 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1883
|
-
I, [2018-11-20T20:28:05.436486 #64038] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:28:05 +0800
|
1884
|
-
I, [2018-11-20T20:28:05.437309 #64038] INFO -- : Processing by DummyController#crash as HTML
|
1885
|
-
I, [2018-11-20T20:28:05.437571 #64038] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1886
|
-
F, [2018-11-20T20:28:05.442685 #64038] FATAL -- :
|
1887
|
-
F, [2018-11-20T20:28:05.446394 #64038] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1888
|
-
F, [2018-11-20T20:28:05.446438 #64038] FATAL -- :
|
1889
|
-
F, [2018-11-20T20:28:05.446468 #64038] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1890
|
-
D, [2018-11-20T20:33:03.935043 #64094] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1891
|
-
D, [2018-11-20T20:33:03.935430 #64094] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1892
|
-
D, [2018-11-20T20:33:03.938247 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
1893
|
-
D, [2018-11-20T20:33:03.938779 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1894
|
-
D, [2018-11-20T20:33:03.939259 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1895
|
-
D, [2018-11-20T20:33:03.940640 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1896
|
-
D, [2018-11-20T20:33:03.948597 #64094] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1897
|
-
D, [2018-11-20T20:33:03.951454 #64094] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1898
|
-
D, [2018-11-20T20:33:03.952288 #64094] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:33:03.951723"], ["updated_at", "2018-11-20 12:33:03.951723"]]
|
1899
|
-
D, [2018-11-20T20:33:03.952457 #64094] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1900
|
-
I, [2018-11-20T20:33:03.991698 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:03 +0800
|
1901
|
-
I, [2018-11-20T20:33:03.993809 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1902
|
-
I, [2018-11-20T20:33:03.994144 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1903
|
-
F, [2018-11-20T20:33:04.004176 #64094] FATAL -- :
|
1904
|
-
F, [2018-11-20T20:33:04.009482 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1905
|
-
F, [2018-11-20T20:33:04.009548 #64094] FATAL -- :
|
1906
|
-
F, [2018-11-20T20:33:04.009581 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1907
|
-
I, [2018-11-20T20:33:04.012113 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1908
|
-
I, [2018-11-20T20:33:04.012943 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1909
|
-
I, [2018-11-20T20:33:04.013237 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1910
|
-
F, [2018-11-20T20:33:04.018356 #64094] FATAL -- :
|
1911
|
-
F, [2018-11-20T20:33:04.022381 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1912
|
-
F, [2018-11-20T20:33:04.022416 #64094] FATAL -- :
|
1913
|
-
F, [2018-11-20T20:33:04.022444 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1914
|
-
I, [2018-11-20T20:33:04.024362 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1915
|
-
I, [2018-11-20T20:33:04.025101 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1916
|
-
I, [2018-11-20T20:33:04.025366 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1917
|
-
F, [2018-11-20T20:33:04.030409 #64094] FATAL -- :
|
1918
|
-
F, [2018-11-20T20:33:04.034321 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1919
|
-
F, [2018-11-20T20:33:04.034349 #64094] FATAL -- :
|
1920
|
-
F, [2018-11-20T20:33:04.034373 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1921
|
-
I, [2018-11-20T20:33:04.036306 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1922
|
-
I, [2018-11-20T20:33:04.036924 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1923
|
-
I, [2018-11-20T20:33:04.037183 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1924
|
-
F, [2018-11-20T20:33:04.044809 #64094] FATAL -- :
|
1925
|
-
F, [2018-11-20T20:33:04.049554 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1926
|
-
F, [2018-11-20T20:33:04.049605 #64094] FATAL -- :
|
1927
|
-
F, [2018-11-20T20:33:04.049635 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1928
|
-
I, [2018-11-20T20:33:04.052208 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1929
|
-
I, [2018-11-20T20:33:04.052922 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1930
|
-
I, [2018-11-20T20:33:04.053239 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1931
|
-
F, [2018-11-20T20:33:04.059746 #64094] FATAL -- :
|
1932
|
-
F, [2018-11-20T20:33:04.066384 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1933
|
-
F, [2018-11-20T20:33:04.066417 #64094] FATAL -- :
|
1934
|
-
F, [2018-11-20T20:33:04.066442 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1935
|
-
I, [2018-11-20T20:33:04.068230 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1936
|
-
I, [2018-11-20T20:33:04.068880 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1937
|
-
I, [2018-11-20T20:33:04.069186 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1938
|
-
F, [2018-11-20T20:33:04.075110 #64094] FATAL -- :
|
1939
|
-
F, [2018-11-20T20:33:04.078946 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1940
|
-
F, [2018-11-20T20:33:04.078988 #64094] FATAL -- :
|
1941
|
-
F, [2018-11-20T20:33:04.079015 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1942
|
-
I, [2018-11-20T20:33:04.080867 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1943
|
-
I, [2018-11-20T20:33:04.081511 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1944
|
-
I, [2018-11-20T20:33:04.081787 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1945
|
-
F, [2018-11-20T20:33:04.086484 #64094] FATAL -- :
|
1946
|
-
F, [2018-11-20T20:33:04.090761 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1947
|
-
F, [2018-11-20T20:33:04.090802 #64094] FATAL -- :
|
1948
|
-
F, [2018-11-20T20:33:04.090829 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1949
|
-
I, [2018-11-20T20:33:04.092582 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1950
|
-
I, [2018-11-20T20:33:04.093201 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1951
|
-
I, [2018-11-20T20:33:04.093492 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1952
|
-
F, [2018-11-20T20:33:04.101430 #64094] FATAL -- :
|
1953
|
-
F, [2018-11-20T20:33:04.101478 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1954
|
-
F, [2018-11-20T20:33:04.101502 #64094] FATAL -- :
|
1955
|
-
F, [2018-11-20T20:33:04.101524 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1956
|
-
I, [2018-11-20T20:33:04.103333 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1957
|
-
I, [2018-11-20T20:33:04.104282 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1958
|
-
I, [2018-11-20T20:33:04.104914 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1959
|
-
F, [2018-11-20T20:33:04.110246 #64094] FATAL -- :
|
1960
|
-
F, [2018-11-20T20:33:04.113978 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1961
|
-
F, [2018-11-20T20:33:04.114009 #64094] FATAL -- :
|
1962
|
-
F, [2018-11-20T20:33:04.114034 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1963
|
-
I, [2018-11-20T20:33:04.115984 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1964
|
-
I, [2018-11-20T20:33:04.116575 #64094] INFO -- : Processing by DummyController#crash as HTML
|
1965
|
-
I, [2018-11-20T20:33:04.116835 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1966
|
-
F, [2018-11-20T20:33:04.123320 #64094] FATAL -- :
|
1967
|
-
F, [2018-11-20T20:33:04.126640 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1968
|
-
F, [2018-11-20T20:33:04.126672 #64094] FATAL -- :
|
1969
|
-
F, [2018-11-20T20:33:04.126719 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
1970
|
-
I, [2018-11-20T20:33:04.128464 #64094] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1971
|
-
I, [2018-11-20T20:33:04.129054 #64094] INFO -- : Processing by DummyController#index as HTML
|
1972
|
-
I, [2018-11-20T20:33:04.131436 #64094] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1973
|
-
I, [2018-11-20T20:33:04.132021 #64094] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.5ms)
|
1974
|
-
I, [2018-11-20T20:33:04.132329 #64094] INFO -- : Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
1975
|
-
I, [2018-11-20T20:33:04.133777 #64094] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:33:04 +0800
|
1976
|
-
I, [2018-11-20T20:33:04.134352 #64094] INFO -- : Processing by DummyController#active_job as HTML
|
1977
|
-
I, [2018-11-20T20:33:04.135168 #64094] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1978
|
-
I, [2018-11-20T20:33:04.136936 #64094] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1979
|
-
I, [2018-11-20T20:33:04.139391 #64094] INFO -- : Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
1980
|
-
I, [2018-11-20T20:33:06.146412 #64094] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:33:06 +0800
|
1981
|
-
I, [2018-11-20T20:33:06.147563 #64094] INFO -- : Processing by DummyController#active_job as HTML
|
1982
|
-
I, [2018-11-20T20:33:06.148757 #64094] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1983
|
-
I, [2018-11-20T20:33:06.149168 #64094] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1984
|
-
I, [2018-11-20T20:33:06.149577 #64094] INFO -- : Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1985
|
-
I, [2018-11-20T20:33:08.155111 #64094] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:33:08 +0800
|
1986
|
-
I, [2018-11-20T20:33:08.156160 #64094] INFO -- : Processing by DummyController#active_job as HTML
|
1987
|
-
I, [2018-11-20T20:33:08.157235 #64094] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1988
|
-
I, [2018-11-20T20:33:08.157577 #64094] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1989
|
-
I, [2018-11-20T20:33:08.157945 #64094] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1990
|
-
I, [2018-11-20T20:33:10.165839 #64094] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:33:10 +0800
|
1991
|
-
I, [2018-11-20T20:33:10.167206 #64094] INFO -- : Processing by DummyController#resque as HTML
|
1992
|
-
I, [2018-11-20T20:33:10.179760 #64094] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1993
|
-
I, [2018-11-20T20:33:10.180058 #64094] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
1994
|
-
I, [2018-11-20T20:33:10.180323 #64094] INFO -- : Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1995
|
-
I, [2018-11-20T20:33:10.182673 #64094] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:33:10 +0800
|
1996
|
-
I, [2018-11-20T20:33:10.183393 #64094] INFO -- : Processing by DummyController#resque as HTML
|
1997
|
-
I, [2018-11-20T20:33:10.184399 #64094] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1998
|
-
I, [2018-11-20T20:33:10.184626 #64094] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
1999
|
-
I, [2018-11-20T20:33:10.184927 #64094] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2000
|
-
I, [2018-11-20T20:33:10.186539 #64094] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-20 20:33:10 +0800
|
2001
|
-
I, [2018-11-20T20:33:10.187307 #64094] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2002
|
-
D, [2018-11-20T20:33:10.187599 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2003
|
-
D, [2018-11-20T20:33:10.190733 #64094] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2004
|
-
D, [2018-11-20T20:33:10.191115 #64094] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2005
|
-
I, [2018-11-20T20:33:10.198954 #64094] INFO -- : Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms)
|
2006
|
-
F, [2018-11-20T20:33:10.216281 #64094] FATAL -- :
|
2007
|
-
F, [2018-11-20T20:33:10.223005 #64094] FATAL -- : AirbrakeTestError (after_rollback):
|
2008
|
-
F, [2018-11-20T20:33:10.223053 #64094] FATAL -- :
|
2009
|
-
F, [2018-11-20T20:33:10.223081 #64094] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2010
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2011
|
-
I, [2018-11-20T20:33:12.226223 #64094] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-20 20:33:12 +0800
|
2012
|
-
I, [2018-11-20T20:33:12.227161 #64094] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2013
|
-
D, [2018-11-20T20:33:12.227607 #64094] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2014
|
-
D, [2018-11-20T20:33:12.228124 #64094] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2015
|
-
D, [2018-11-20T20:33:12.228336 #64094] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2016
|
-
I, [2018-11-20T20:33:12.232818 #64094] INFO -- : Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms)
|
2017
|
-
F, [2018-11-20T20:33:12.238103 #64094] FATAL -- :
|
2018
|
-
F, [2018-11-20T20:33:12.247439 #64094] FATAL -- : AirbrakeTestError (after_commit):
|
2019
|
-
F, [2018-11-20T20:33:12.247508 #64094] FATAL -- :
|
2020
|
-
F, [2018-11-20T20:33:12.247536 #64094] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2021
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2022
|
-
I, [2018-11-20T20:33:14.255356 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2023
|
-
I, [2018-11-20T20:33:14.256572 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2024
|
-
I, [2018-11-20T20:33:14.256640 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2025
|
-
I, [2018-11-20T20:33:14.256997 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2026
|
-
F, [2018-11-20T20:33:14.262863 #64094] FATAL -- :
|
2027
|
-
F, [2018-11-20T20:33:14.268972 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2028
|
-
F, [2018-11-20T20:33:14.269027 #64094] FATAL -- :
|
2029
|
-
F, [2018-11-20T20:33:14.269071 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2030
|
-
I, [2018-11-20T20:33:14.271509 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2031
|
-
I, [2018-11-20T20:33:14.272387 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2032
|
-
I, [2018-11-20T20:33:14.272435 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2033
|
-
I, [2018-11-20T20:33:14.272725 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2034
|
-
F, [2018-11-20T20:33:14.277690 #64094] FATAL -- :
|
2035
|
-
F, [2018-11-20T20:33:14.281243 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2036
|
-
F, [2018-11-20T20:33:14.281291 #64094] FATAL -- :
|
2037
|
-
F, [2018-11-20T20:33:14.281316 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2038
|
-
I, [2018-11-20T20:33:14.282921 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2039
|
-
I, [2018-11-20T20:33:14.283621 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2040
|
-
I, [2018-11-20T20:33:14.283661 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2041
|
-
I, [2018-11-20T20:33:14.283886 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2042
|
-
F, [2018-11-20T20:33:14.288246 #64094] FATAL -- :
|
2043
|
-
F, [2018-11-20T20:33:14.292739 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2044
|
-
F, [2018-11-20T20:33:14.292792 #64094] FATAL -- :
|
2045
|
-
F, [2018-11-20T20:33:14.292818 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2046
|
-
I, [2018-11-20T20:33:14.296359 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2047
|
-
I, [2018-11-20T20:33:14.297346 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2048
|
-
I, [2018-11-20T20:33:14.297390 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2049
|
-
I, [2018-11-20T20:33:14.297672 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2050
|
-
F, [2018-11-20T20:33:14.301957 #64094] FATAL -- :
|
2051
|
-
F, [2018-11-20T20:33:14.306045 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2052
|
-
F, [2018-11-20T20:33:14.306097 #64094] FATAL -- :
|
2053
|
-
F, [2018-11-20T20:33:14.306122 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2054
|
-
I, [2018-11-20T20:33:14.308140 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2055
|
-
I, [2018-11-20T20:33:14.308866 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2056
|
-
I, [2018-11-20T20:33:14.308906 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2057
|
-
I, [2018-11-20T20:33:14.309141 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2058
|
-
F, [2018-11-20T20:33:14.313883 #64094] FATAL -- :
|
2059
|
-
F, [2018-11-20T20:33:14.313942 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2060
|
-
F, [2018-11-20T20:33:14.320484 #64094] FATAL -- :
|
2061
|
-
F, [2018-11-20T20:33:14.320524 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2062
|
-
I, [2018-11-20T20:33:14.322208 #64094] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2063
|
-
I, [2018-11-20T20:33:14.322872 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2064
|
-
I, [2018-11-20T20:33:14.322924 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2065
|
-
I, [2018-11-20T20:33:14.323155 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2066
|
-
F, [2018-11-20T20:33:14.327556 #64094] FATAL -- :
|
2067
|
-
F, [2018-11-20T20:33:14.331833 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2068
|
-
F, [2018-11-20T20:33:14.331868 #64094] FATAL -- :
|
2069
|
-
F, [2018-11-20T20:33:14.331894 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2070
|
-
I, [2018-11-20T20:33:14.333640 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2071
|
-
I, [2018-11-20T20:33:14.334398 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2072
|
-
I, [2018-11-20T20:33:14.334438 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2073
|
-
I, [2018-11-20T20:33:14.339003 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2074
|
-
I, [2018-11-20T20:33:14.343699 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2075
|
-
I, [2018-11-20T20:33:14.344059 #64094] INFO -- : Completed 200 OK in 10ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
2076
|
-
I, [2018-11-20T20:33:14.346220 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2077
|
-
I, [2018-11-20T20:33:14.346884 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2078
|
-
I, [2018-11-20T20:33:14.346929 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2079
|
-
I, [2018-11-20T20:33:14.351109 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2080
|
-
I, [2018-11-20T20:33:14.351360 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2081
|
-
I, [2018-11-20T20:33:14.351624 #64094] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2082
|
-
I, [2018-11-20T20:33:14.470337 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2083
|
-
I, [2018-11-20T20:33:14.471571 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2084
|
-
I, [2018-11-20T20:33:14.471637 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2085
|
-
I, [2018-11-20T20:33:14.483668 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2086
|
-
I, [2018-11-20T20:33:14.483969 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2087
|
-
I, [2018-11-20T20:33:14.484325 #64094] INFO -- : Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2088
|
-
I, [2018-11-20T20:33:14.486827 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2089
|
-
I, [2018-11-20T20:33:14.487855 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2090
|
-
I, [2018-11-20T20:33:14.487909 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2091
|
-
I, [2018-11-20T20:33:14.492387 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2092
|
-
I, [2018-11-20T20:33:14.492663 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2093
|
-
I, [2018-11-20T20:33:14.492948 #64094] INFO -- : Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2094
|
-
I, [2018-11-20T20:33:14.598192 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2095
|
-
I, [2018-11-20T20:33:14.599595 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2096
|
-
I, [2018-11-20T20:33:14.599694 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2097
|
-
I, [2018-11-20T20:33:14.610350 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2098
|
-
I, [2018-11-20T20:33:14.610804 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2099
|
-
I, [2018-11-20T20:33:14.611437 #64094] INFO -- : Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
2100
|
-
I, [2018-11-20T20:33:14.614179 #64094] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2101
|
-
I, [2018-11-20T20:33:14.615039 #64094] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2102
|
-
I, [2018-11-20T20:33:14.615078 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2103
|
-
I, [2018-11-20T20:33:14.619682 #64094] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2104
|
-
I, [2018-11-20T20:33:14.623567 #64094] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2105
|
-
I, [2018-11-20T20:33:14.623837 #64094] INFO -- : Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
2106
|
-
I, [2018-11-20T20:33:14.626124 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2107
|
-
I, [2018-11-20T20:33:14.626859 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2108
|
-
I, [2018-11-20T20:33:14.626902 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2109
|
-
I, [2018-11-20T20:33:14.638026 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2110
|
-
I, [2018-11-20T20:33:14.638276 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2111
|
-
I, [2018-11-20T20:33:14.638526 #64094] INFO -- : Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2112
|
-
I, [2018-11-20T20:33:14.640559 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2113
|
-
I, [2018-11-20T20:33:14.641240 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2114
|
-
I, [2018-11-20T20:33:14.641279 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2115
|
-
I, [2018-11-20T20:33:14.651307 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2116
|
-
I, [2018-11-20T20:33:14.651629 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2117
|
-
I, [2018-11-20T20:33:14.651946 #64094] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2118
|
-
I, [2018-11-20T20:33:14.654561 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2119
|
-
I, [2018-11-20T20:33:14.655385 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2120
|
-
I, [2018-11-20T20:33:14.655425 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2121
|
-
I, [2018-11-20T20:33:14.664143 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2122
|
-
I, [2018-11-20T20:33:14.664369 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2123
|
-
I, [2018-11-20T20:33:14.664632 #64094] INFO -- : Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2124
|
-
I, [2018-11-20T20:33:14.666690 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2125
|
-
I, [2018-11-20T20:33:14.667390 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2126
|
-
I, [2018-11-20T20:33:14.667429 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2127
|
-
I, [2018-11-20T20:33:14.678031 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2128
|
-
I, [2018-11-20T20:33:14.679056 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.7ms)
|
2129
|
-
I, [2018-11-20T20:33:14.679798 #64094] INFO -- : Completed 200 OK in 12ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
2130
|
-
I, [2018-11-20T20:33:14.683051 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2131
|
-
I, [2018-11-20T20:33:14.684182 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2132
|
-
I, [2018-11-20T20:33:14.684241 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2133
|
-
I, [2018-11-20T20:33:14.696065 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2134
|
-
I, [2018-11-20T20:33:14.696313 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2135
|
-
I, [2018-11-20T20:33:14.696577 #64094] INFO -- : Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2136
|
-
I, [2018-11-20T20:33:14.698644 #64094] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2137
|
-
I, [2018-11-20T20:33:14.699355 #64094] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2138
|
-
I, [2018-11-20T20:33:14.699395 #64094] INFO -- : Parameters: {"foo"=>"bar"}
|
2139
|
-
I, [2018-11-20T20:33:14.708196 #64094] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2140
|
-
I, [2018-11-20T20:33:14.708498 #64094] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2141
|
-
I, [2018-11-20T20:33:14.708811 #64094] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2142
|
-
I, [2018-11-20T20:33:14.713388 #64094] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:33:14 +0800
|
2143
|
-
I, [2018-11-20T20:33:14.714202 #64094] INFO -- : Processing by DummyController#crash as HTML
|
2144
|
-
I, [2018-11-20T20:33:14.714472 #64094] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2145
|
-
F, [2018-11-20T20:33:14.719165 #64094] FATAL -- :
|
2146
|
-
F, [2018-11-20T20:33:14.722589 #64094] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2147
|
-
F, [2018-11-20T20:33:14.722628 #64094] FATAL -- :
|
2148
|
-
F, [2018-11-20T20:33:14.722654 #64094] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2149
|
-
I, [2018-11-20T20:33:16.729800 #64094] INFO -- : Started HEAD "/index" for 127.0.0.1 at 2018-11-20 20:33:16 +0800
|
2150
|
-
F, [2018-11-20T20:33:16.731361 #64094] FATAL -- :
|
2151
|
-
F, [2018-11-20T20:33:16.731445 #64094] FATAL -- : ActionController::RoutingError (No route matches [HEAD] "/index"):
|
2152
|
-
F, [2018-11-20T20:33:16.731477 #64094] FATAL -- :
|
2153
|
-
F, [2018-11-20T20:33:16.731514 #64094] FATAL -- : actionpack (5.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call'
|
2154
|
-
actionpack (5.1.6) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
2155
|
-
railties (5.1.6) lib/rails/rack/logger.rb:36:in `call_app'
|
2156
|
-
railties (5.1.6) lib/rails/rack/logger.rb:26:in `call'
|
2157
|
-
actionpack (5.1.6) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
2158
|
-
actionpack (5.1.6) lib/action_dispatch/middleware/request_id.rb:25:in `call'
|
2159
|
-
rack (2.0.6) lib/rack/method_override.rb:22:in `call'
|
2160
|
-
rack (2.0.6) lib/rack/runtime.rb:22:in `call'
|
2161
|
-
activesupport (5.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'
|
2162
|
-
actionpack (5.1.6) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
2163
|
-
actionpack (5.1.6) lib/action_dispatch/middleware/static.rb:125:in `call'
|
2164
|
-
rack (2.0.6) lib/rack/sendfile.rb:111:in `call'
|
2165
|
-
railties (5.1.6) lib/rails/engine.rb:522:in `call'
|
2166
|
-
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
2167
|
-
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
2168
|
-
rack-test (0.6.3) lib/rack/test.rb:112:in `head'
|
2169
|
-
spec/integration/rails/rails_spec.rb:318:in `block (3 levels) in <top (required)>'
|
2170
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:254:in `instance_exec'
|
2171
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:254:in `block in run'
|
2172
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
2173
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
2174
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:464:in `block in run'
|
2175
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'
|
2176
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:342:in `call'
|
2177
|
-
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
2178
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:447:in `instance_exec'
|
2179
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:447:in `instance_exec'
|
2180
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:373:in `execute_with'
|
2181
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'
|
2182
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:342:in `call'
|
2183
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'
|
2184
|
-
rspec-core (3.8.0) lib/rspec/core/hooks.rb:464:in `run'
|
2185
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
2186
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
2187
|
-
rspec-core (3.8.0) lib/rspec/core/example.rb:251:in `run'
|
2188
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:629:in `block in run_examples'
|
2189
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:625:in `map'
|
2190
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:625:in `run_examples'
|
2191
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:591:in `run'
|
2192
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:592:in `block in run'
|
2193
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:592:in `map'
|
2194
|
-
rspec-core (3.8.0) lib/rspec/core/example_group.rb:592:in `run'
|
2195
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:116:in `block (3 levels) in run_specs'
|
2196
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:116:in `map'
|
2197
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:116:in `block (2 levels) in run_specs'
|
2198
|
-
rspec-core (3.8.0) lib/rspec/core/configuration.rb:1989:in `with_suite_hooks'
|
2199
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:111:in `block in run_specs'
|
2200
|
-
rspec-core (3.8.0) lib/rspec/core/reporter.rb:74:in `report'
|
2201
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:110:in `run_specs'
|
2202
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:87:in `run'
|
2203
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:71:in `run'
|
2204
|
-
rspec-core (3.8.0) lib/rspec/core/runner.rb:45:in `invoke'
|
2205
|
-
rspec-core (3.8.0) exe/rspec:4:in `<top (required)>'
|
2206
|
-
/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec:23:in `load'
|
2207
|
-
/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec:23:in `<top (required)>'
|
2208
|
-
bundler (1.17.1) lib/bundler/cli/exec.rb:74:in `load'
|
2209
|
-
bundler (1.17.1) lib/bundler/cli/exec.rb:74:in `kernel_load'
|
2210
|
-
bundler (1.17.1) lib/bundler/cli/exec.rb:28:in `run'
|
2211
|
-
bundler (1.17.1) lib/bundler/cli.rb:463:in `exec'
|
2212
|
-
bundler (1.17.1) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
|
2213
|
-
bundler (1.17.1) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
|
2214
|
-
bundler (1.17.1) lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
|
2215
|
-
bundler (1.17.1) lib/bundler/cli.rb:27:in `dispatch'
|
2216
|
-
bundler (1.17.1) lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
|
2217
|
-
bundler (1.17.1) lib/bundler/cli.rb:18:in `start'
|
2218
|
-
bundler (1.17.1) exe/bundle:30:in `block in <top (required)>'
|
2219
|
-
bundler (1.17.1) lib/bundler/friendly_errors.rb:124:in `with_friendly_errors'
|
2220
|
-
bundler (1.17.1) exe/bundle:22:in `<top (required)>'
|
2221
|
-
/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle:23:in `load'
|
2222
|
-
/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle:23:in `<main>'
|
2223
|
-
I, [2018-11-20T20:33:21.744902 #64094] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:33:21 +0800
|
2224
|
-
I, [2018-11-20T20:33:21.746237 #64094] INFO -- : Processing by DummyController#delayed_job as HTML
|
2225
|
-
I, [2018-11-20T20:33:21.769863 #64094] INFO -- : Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.4ms)
|
2226
|
-
F, [2018-11-20T20:33:21.774851 #64094] FATAL -- :
|
2227
|
-
F, [2018-11-20T20:33:21.774892 #64094] FATAL -- : AirbrakeTestError (delayed_job error):
|
2228
|
-
F, [2018-11-20T20:33:21.774920 #64094] FATAL -- :
|
2229
|
-
F, [2018-11-20T20:33:21.778202 #64094] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2230
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2231
|
-
I, [2018-11-20T20:33:25.785960 #64094] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:33:25 +0800
|
2232
|
-
I, [2018-11-20T20:33:25.787269 #64094] INFO -- : Processing by DummyController#delayed_job as HTML
|
2233
|
-
I, [2018-11-20T20:33:25.788315 #64094] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2234
|
-
F, [2018-11-20T20:33:25.789623 #64094] FATAL -- :
|
2235
|
-
F, [2018-11-20T20:33:25.789674 #64094] FATAL -- : AirbrakeTestError (delayed_job error):
|
2236
|
-
F, [2018-11-20T20:33:25.789706 #64094] FATAL -- :
|
2237
|
-
F, [2018-11-20T20:33:25.789739 #64094] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2238
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2239
|
-
D, [2018-11-20T20:34:46.393537 #64115] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2240
|
-
D, [2018-11-20T20:34:46.393973 #64115] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2241
|
-
D, [2018-11-20T20:34:46.396551 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
2242
|
-
D, [2018-11-20T20:34:46.397148 #64115] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2243
|
-
D, [2018-11-20T20:34:46.397684 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2244
|
-
D, [2018-11-20T20:34:46.399247 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2245
|
-
D, [2018-11-20T20:34:46.408227 #64115] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
2246
|
-
D, [2018-11-20T20:34:46.411320 #64115] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2247
|
-
D, [2018-11-20T20:34:46.412325 #64115] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:34:46.411606"], ["updated_at", "2018-11-20 12:34:46.411606"]]
|
2248
|
-
D, [2018-11-20T20:34:46.412557 #64115] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2249
|
-
I, [2018-11-20T20:34:46.452976 #64115] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-20 20:34:46 +0800
|
2250
|
-
I, [2018-11-20T20:34:46.455676 #64115] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2251
|
-
D, [2018-11-20T20:34:46.456099 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2252
|
-
D, [2018-11-20T20:34:46.459707 #64115] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2253
|
-
D, [2018-11-20T20:34:46.460097 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
2254
|
-
I, [2018-11-20T20:34:46.470418 #64115] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.8ms)
|
2255
|
-
F, [2018-11-20T20:34:46.496232 #64115] FATAL -- :
|
2256
|
-
F, [2018-11-20T20:34:46.505396 #64115] FATAL -- : AirbrakeTestError (after_rollback):
|
2257
|
-
F, [2018-11-20T20:34:46.505474 #64115] FATAL -- :
|
2258
|
-
F, [2018-11-20T20:34:46.505506 #64115] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2259
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2260
|
-
I, [2018-11-20T20:34:48.511099 #64115] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-20 20:34:48 +0800
|
2261
|
-
I, [2018-11-20T20:34:48.512229 #64115] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2262
|
-
D, [2018-11-20T20:34:48.512765 #64115] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2263
|
-
D, [2018-11-20T20:34:48.513433 #64115] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2264
|
-
D, [2018-11-20T20:34:48.513722 #64115] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2265
|
-
I, [2018-11-20T20:34:48.519064 #64115] INFO -- : Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms)
|
2266
|
-
F, [2018-11-20T20:34:48.531741 #64115] FATAL -- :
|
2267
|
-
F, [2018-11-20T20:34:48.535789 #64115] FATAL -- : AirbrakeTestError (after_commit):
|
2268
|
-
F, [2018-11-20T20:34:48.535820 #64115] FATAL -- :
|
2269
|
-
F, [2018-11-20T20:34:48.535845 #64115] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2270
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2271
|
-
I, [2018-11-20T20:34:50.543819 #64115] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:34:50 +0800
|
2272
|
-
I, [2018-11-20T20:34:50.544906 #64115] INFO -- : Processing by DummyController#delayed_job as HTML
|
2273
|
-
I, [2018-11-20T20:34:50.559823 #64115] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms)
|
2274
|
-
F, [2018-11-20T20:34:50.568329 #64115] FATAL -- :
|
2275
|
-
F, [2018-11-20T20:34:50.572460 #64115] FATAL -- : AirbrakeTestError (delayed_job error):
|
2276
|
-
F, [2018-11-20T20:34:50.572515 #64115] FATAL -- :
|
2277
|
-
F, [2018-11-20T20:34:50.572543 #64115] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2278
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2279
|
-
I, [2018-11-20T20:34:54.578439 #64115] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:34:54 +0800
|
2280
|
-
I, [2018-11-20T20:34:54.579695 #64115] INFO -- : Processing by DummyController#delayed_job as HTML
|
2281
|
-
I, [2018-11-20T20:34:54.580692 #64115] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2282
|
-
F, [2018-11-20T20:34:54.581948 #64115] FATAL -- :
|
2283
|
-
F, [2018-11-20T20:34:54.582028 #64115] FATAL -- : AirbrakeTestError (delayed_job error):
|
2284
|
-
F, [2018-11-20T20:34:54.582076 #64115] FATAL -- :
|
2285
|
-
F, [2018-11-20T20:34:54.582108 #64115] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2286
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2287
|
-
I, [2018-11-20T20:34:56.587659 #64115] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:34:56 +0800
|
2288
|
-
I, [2018-11-20T20:34:56.595606 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2289
|
-
I, [2018-11-20T20:34:56.596002 #64115] INFO -- : Completed 0 in 0ms (ActiveRecord: 0.0ms)
|
2290
|
-
F, [2018-11-20T20:34:56.600797 #64115] FATAL -- :
|
2291
|
-
F, [2018-11-20T20:34:56.604481 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2292
|
-
F, [2018-11-20T20:34:56.604518 #64115] FATAL -- :
|
2293
|
-
F, [2018-11-20T20:34:56.604556 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2294
|
-
I, [2018-11-20T20:35:01.617909 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:01 +0800
|
2295
|
-
I, [2018-11-20T20:35:01.619284 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2296
|
-
I, [2018-11-20T20:35:01.619830 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2297
|
-
F, [2018-11-20T20:35:01.625882 #64115] FATAL -- :
|
2298
|
-
F, [2018-11-20T20:35:01.630075 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2299
|
-
F, [2018-11-20T20:35:01.630118 #64115] FATAL -- :
|
2300
|
-
F, [2018-11-20T20:35:01.630175 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2301
|
-
I, [2018-11-20T20:35:03.638535 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2302
|
-
I, [2018-11-20T20:35:03.639656 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2303
|
-
I, [2018-11-20T20:35:03.640054 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2304
|
-
F, [2018-11-20T20:35:03.649242 #64115] FATAL -- :
|
2305
|
-
F, [2018-11-20T20:35:03.654899 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2306
|
-
F, [2018-11-20T20:35:03.654955 #64115] FATAL -- :
|
2307
|
-
F, [2018-11-20T20:35:03.654983 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2308
|
-
I, [2018-11-20T20:35:03.657452 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2309
|
-
I, [2018-11-20T20:35:03.658408 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2310
|
-
I, [2018-11-20T20:35:03.658757 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2311
|
-
F, [2018-11-20T20:35:03.664097 #64115] FATAL -- :
|
2312
|
-
F, [2018-11-20T20:35:03.669639 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2313
|
-
F, [2018-11-20T20:35:03.669703 #64115] FATAL -- :
|
2314
|
-
F, [2018-11-20T20:35:03.669780 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2315
|
-
I, [2018-11-20T20:35:03.673090 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2316
|
-
I, [2018-11-20T20:35:03.674200 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2317
|
-
I, [2018-11-20T20:35:03.674509 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2318
|
-
F, [2018-11-20T20:35:03.683932 #64115] FATAL -- :
|
2319
|
-
F, [2018-11-20T20:35:03.695636 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2320
|
-
F, [2018-11-20T20:35:03.695690 #64115] FATAL -- :
|
2321
|
-
F, [2018-11-20T20:35:03.695719 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2322
|
-
I, [2018-11-20T20:35:03.698885 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2323
|
-
I, [2018-11-20T20:35:03.699986 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2324
|
-
I, [2018-11-20T20:35:03.700273 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2325
|
-
F, [2018-11-20T20:35:03.709181 #64115] FATAL -- :
|
2326
|
-
F, [2018-11-20T20:35:03.725994 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2327
|
-
F, [2018-11-20T20:35:03.726061 #64115] FATAL -- :
|
2328
|
-
F, [2018-11-20T20:35:03.726090 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2329
|
-
I, [2018-11-20T20:35:03.728423 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2330
|
-
I, [2018-11-20T20:35:03.729231 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2331
|
-
I, [2018-11-20T20:35:03.729499 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2332
|
-
F, [2018-11-20T20:35:03.734437 #64115] FATAL -- :
|
2333
|
-
F, [2018-11-20T20:35:03.734593 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2334
|
-
F, [2018-11-20T20:35:03.738533 #64115] FATAL -- :
|
2335
|
-
F, [2018-11-20T20:35:03.738575 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2336
|
-
I, [2018-11-20T20:35:03.740213 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2337
|
-
I, [2018-11-20T20:35:03.740780 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2338
|
-
I, [2018-11-20T20:35:03.741078 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2339
|
-
F, [2018-11-20T20:35:03.745956 #64115] FATAL -- :
|
2340
|
-
F, [2018-11-20T20:35:03.750562 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2341
|
-
F, [2018-11-20T20:35:03.750607 #64115] FATAL -- :
|
2342
|
-
F, [2018-11-20T20:35:03.750634 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2343
|
-
I, [2018-11-20T20:35:03.753034 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2344
|
-
I, [2018-11-20T20:35:03.753835 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2345
|
-
I, [2018-11-20T20:35:03.754107 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2346
|
-
F, [2018-11-20T20:35:03.758986 #64115] FATAL -- :
|
2347
|
-
F, [2018-11-20T20:35:03.763102 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2348
|
-
F, [2018-11-20T20:35:03.763153 #64115] FATAL -- :
|
2349
|
-
F, [2018-11-20T20:35:03.763181 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2350
|
-
I, [2018-11-20T20:35:03.764920 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2351
|
-
I, [2018-11-20T20:35:03.765527 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2352
|
-
I, [2018-11-20T20:35:03.765781 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2353
|
-
F, [2018-11-20T20:35:03.770742 #64115] FATAL -- :
|
2354
|
-
F, [2018-11-20T20:35:03.777921 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2355
|
-
F, [2018-11-20T20:35:03.778013 #64115] FATAL -- :
|
2356
|
-
F, [2018-11-20T20:35:03.778045 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2357
|
-
I, [2018-11-20T20:35:03.780533 #64115] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:35:03 +0800
|
2358
|
-
I, [2018-11-20T20:35:03.781439 #64115] INFO -- : Processing by DummyController#active_job as HTML
|
2359
|
-
I, [2018-11-20T20:35:03.784240 #64115] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2360
|
-
I, [2018-11-20T20:35:03.786939 #64115] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.7ms)
|
2361
|
-
I, [2018-11-20T20:35:03.788587 #64115] INFO -- : Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
2362
|
-
I, [2018-11-20T20:35:05.793116 #64115] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:35:05 +0800
|
2363
|
-
I, [2018-11-20T20:35:05.793972 #64115] INFO -- : Processing by DummyController#active_job as HTML
|
2364
|
-
I, [2018-11-20T20:35:05.794877 #64115] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2365
|
-
I, [2018-11-20T20:35:05.795191 #64115] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2366
|
-
I, [2018-11-20T20:35:05.796920 #64115] INFO -- : Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2367
|
-
I, [2018-11-20T20:35:07.805153 #64115] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:35:07 +0800
|
2368
|
-
I, [2018-11-20T20:35:07.805915 #64115] INFO -- : Processing by DummyController#active_job as HTML
|
2369
|
-
I, [2018-11-20T20:35:07.806737 #64115] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2370
|
-
I, [2018-11-20T20:35:07.807411 #64115] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2371
|
-
I, [2018-11-20T20:35:07.807691 #64115] INFO -- : Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2372
|
-
I, [2018-11-20T20:35:09.812420 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2373
|
-
I, [2018-11-20T20:35:09.813526 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2374
|
-
I, [2018-11-20T20:35:09.813877 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2375
|
-
F, [2018-11-20T20:35:09.819180 #64115] FATAL -- :
|
2376
|
-
F, [2018-11-20T20:35:09.823946 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2377
|
-
F, [2018-11-20T20:35:09.823986 #64115] FATAL -- :
|
2378
|
-
F, [2018-11-20T20:35:09.824011 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2379
|
-
I, [2018-11-20T20:35:09.826352 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2380
|
-
I, [2018-11-20T20:35:09.827284 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2381
|
-
I, [2018-11-20T20:35:09.827324 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2382
|
-
I, [2018-11-20T20:35:09.836632 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2383
|
-
I, [2018-11-20T20:35:09.836932 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2384
|
-
I, [2018-11-20T20:35:09.837251 #64115] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2385
|
-
I, [2018-11-20T20:35:09.839745 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2386
|
-
I, [2018-11-20T20:35:09.840666 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2387
|
-
I, [2018-11-20T20:35:09.840732 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2388
|
-
I, [2018-11-20T20:35:09.853300 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2389
|
-
I, [2018-11-20T20:35:09.853623 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2390
|
-
I, [2018-11-20T20:35:09.853907 #64115] INFO -- : Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2391
|
-
I, [2018-11-20T20:35:09.857152 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2392
|
-
I, [2018-11-20T20:35:09.858375 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2393
|
-
I, [2018-11-20T20:35:09.858433 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2394
|
-
I, [2018-11-20T20:35:09.867106 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2395
|
-
I, [2018-11-20T20:35:09.867395 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2396
|
-
I, [2018-11-20T20:35:09.867752 #64115] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2397
|
-
I, [2018-11-20T20:35:09.870393 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2398
|
-
I, [2018-11-20T20:35:09.871186 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2399
|
-
I, [2018-11-20T20:35:09.871229 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2400
|
-
I, [2018-11-20T20:35:09.880396 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2401
|
-
I, [2018-11-20T20:35:09.880658 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2402
|
-
I, [2018-11-20T20:35:09.880936 #64115] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2403
|
-
I, [2018-11-20T20:35:09.883291 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2404
|
-
I, [2018-11-20T20:35:09.884080 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2405
|
-
I, [2018-11-20T20:35:09.884130 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2406
|
-
I, [2018-11-20T20:35:09.895009 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2407
|
-
I, [2018-11-20T20:35:09.895286 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2408
|
-
I, [2018-11-20T20:35:09.895529 #64115] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2409
|
-
I, [2018-11-20T20:35:09.897554 #64115] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2410
|
-
I, [2018-11-20T20:35:09.898301 #64115] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2411
|
-
I, [2018-11-20T20:35:09.898342 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2412
|
-
I, [2018-11-20T20:35:09.907079 #64115] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2413
|
-
I, [2018-11-20T20:35:09.907305 #64115] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2414
|
-
I, [2018-11-20T20:35:09.907619 #64115] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2415
|
-
I, [2018-11-20T20:35:09.910162 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2416
|
-
I, [2018-11-20T20:35:09.911553 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2417
|
-
I, [2018-11-20T20:35:09.911599 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2418
|
-
I, [2018-11-20T20:35:09.920657 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2419
|
-
I, [2018-11-20T20:35:09.920979 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2420
|
-
I, [2018-11-20T20:35:09.921320 #64115] INFO -- : Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2421
|
-
I, [2018-11-20T20:35:09.923499 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2422
|
-
I, [2018-11-20T20:35:09.924342 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2423
|
-
I, [2018-11-20T20:35:09.924386 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2424
|
-
I, [2018-11-20T20:35:09.929120 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2425
|
-
I, [2018-11-20T20:35:09.934132 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2426
|
-
I, [2018-11-20T20:35:09.934467 #64115] INFO -- : Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
2427
|
-
I, [2018-11-20T20:35:09.937070 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2428
|
-
I, [2018-11-20T20:35:09.937864 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2429
|
-
I, [2018-11-20T20:35:09.937920 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2430
|
-
I, [2018-11-20T20:35:09.944044 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2431
|
-
I, [2018-11-20T20:35:09.944352 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2432
|
-
I, [2018-11-20T20:35:09.951257 #64115] INFO -- : Completed 200 OK in 13ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
2433
|
-
I, [2018-11-20T20:35:09.953636 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:09 +0800
|
2434
|
-
I, [2018-11-20T20:35:09.954343 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2435
|
-
I, [2018-11-20T20:35:09.954387 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2436
|
-
I, [2018-11-20T20:35:09.958636 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2437
|
-
I, [2018-11-20T20:35:09.958872 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2438
|
-
I, [2018-11-20T20:35:09.959151 #64115] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2439
|
-
I, [2018-11-20T20:35:10.064589 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2440
|
-
I, [2018-11-20T20:35:10.065753 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2441
|
-
I, [2018-11-20T20:35:10.065829 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2442
|
-
I, [2018-11-20T20:35:10.075687 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2443
|
-
I, [2018-11-20T20:35:10.076007 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2444
|
-
I, [2018-11-20T20:35:10.076329 #64115] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2445
|
-
I, [2018-11-20T20:35:10.078868 #64115] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2446
|
-
I, [2018-11-20T20:35:10.079720 #64115] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2447
|
-
I, [2018-11-20T20:35:10.079763 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2448
|
-
I, [2018-11-20T20:35:10.084359 #64115] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2449
|
-
I, [2018-11-20T20:35:10.091320 #64115] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2450
|
-
I, [2018-11-20T20:35:10.091615 #64115] INFO -- : Completed 200 OK in 12ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
2451
|
-
I, [2018-11-20T20:35:10.094014 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2452
|
-
I, [2018-11-20T20:35:10.094752 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2453
|
-
I, [2018-11-20T20:35:10.094797 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2454
|
-
I, [2018-11-20T20:35:10.095054 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2455
|
-
F, [2018-11-20T20:35:10.099608 #64115] FATAL -- :
|
2456
|
-
F, [2018-11-20T20:35:10.104664 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2457
|
-
F, [2018-11-20T20:35:10.104721 #64115] FATAL -- :
|
2458
|
-
F, [2018-11-20T20:35:10.104749 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2459
|
-
I, [2018-11-20T20:35:10.106877 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2460
|
-
I, [2018-11-20T20:35:10.107731 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2461
|
-
I, [2018-11-20T20:35:10.107772 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2462
|
-
I, [2018-11-20T20:35:10.108061 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2463
|
-
F, [2018-11-20T20:35:10.112416 #64115] FATAL -- :
|
2464
|
-
F, [2018-11-20T20:35:10.112465 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2465
|
-
F, [2018-11-20T20:35:10.112491 #64115] FATAL -- :
|
2466
|
-
F, [2018-11-20T20:35:10.116805 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2467
|
-
I, [2018-11-20T20:35:10.118702 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2468
|
-
I, [2018-11-20T20:35:10.119450 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2469
|
-
I, [2018-11-20T20:35:10.119491 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2470
|
-
I, [2018-11-20T20:35:10.119721 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2471
|
-
F, [2018-11-20T20:35:10.124278 #64115] FATAL -- :
|
2472
|
-
F, [2018-11-20T20:35:10.129590 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2473
|
-
F, [2018-11-20T20:35:10.129640 #64115] FATAL -- :
|
2474
|
-
F, [2018-11-20T20:35:10.129670 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2475
|
-
I, [2018-11-20T20:35:10.131910 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2476
|
-
I, [2018-11-20T20:35:10.132820 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2477
|
-
I, [2018-11-20T20:35:10.132865 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2478
|
-
I, [2018-11-20T20:35:10.133140 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2479
|
-
F, [2018-11-20T20:35:10.140361 #64115] FATAL -- :
|
2480
|
-
F, [2018-11-20T20:35:10.146715 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2481
|
-
F, [2018-11-20T20:35:10.146794 #64115] FATAL -- :
|
2482
|
-
F, [2018-11-20T20:35:10.146836 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2483
|
-
I, [2018-11-20T20:35:10.150635 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2484
|
-
I, [2018-11-20T20:35:10.152036 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2485
|
-
I, [2018-11-20T20:35:10.152099 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2486
|
-
I, [2018-11-20T20:35:10.152579 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2487
|
-
F, [2018-11-20T20:35:10.157897 #64115] FATAL -- :
|
2488
|
-
F, [2018-11-20T20:35:10.164371 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2489
|
-
F, [2018-11-20T20:35:10.164414 #64115] FATAL -- :
|
2490
|
-
F, [2018-11-20T20:35:10.164441 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2491
|
-
I, [2018-11-20T20:35:10.168296 #64115] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2492
|
-
I, [2018-11-20T20:35:10.170168 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2493
|
-
I, [2018-11-20T20:35:10.170239 #64115] INFO -- : Parameters: {"foo"=>"bar"}
|
2494
|
-
I, [2018-11-20T20:35:10.170606 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2495
|
-
F, [2018-11-20T20:35:10.198605 #64115] FATAL -- :
|
2496
|
-
F, [2018-11-20T20:35:10.198664 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2497
|
-
F, [2018-11-20T20:35:10.198695 #64115] FATAL -- :
|
2498
|
-
F, [2018-11-20T20:35:10.198721 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2499
|
-
I, [2018-11-20T20:35:10.203101 #64115] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2500
|
-
I, [2018-11-20T20:35:10.204294 #64115] INFO -- : Processing by DummyController#resque as HTML
|
2501
|
-
I, [2018-11-20T20:35:10.206265 #64115] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2502
|
-
I, [2018-11-20T20:35:10.206528 #64115] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2503
|
-
I, [2018-11-20T20:35:10.206813 #64115] INFO -- : Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2504
|
-
I, [2018-11-20T20:35:10.209826 #64115] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2505
|
-
I, [2018-11-20T20:35:10.210458 #64115] INFO -- : Processing by DummyController#resque as HTML
|
2506
|
-
I, [2018-11-20T20:35:10.228074 #64115] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2507
|
-
I, [2018-11-20T20:35:10.228366 #64115] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2508
|
-
I, [2018-11-20T20:35:10.228701 #64115] INFO -- : Completed 200 OK in 18ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2509
|
-
I, [2018-11-20T20:35:10.231609 #64115] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2510
|
-
I, [2018-11-20T20:35:10.232357 #64115] INFO -- : Processing by DummyController#crash as HTML
|
2511
|
-
I, [2018-11-20T20:35:10.232630 #64115] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2512
|
-
F, [2018-11-20T20:35:10.237823 #64115] FATAL -- :
|
2513
|
-
F, [2018-11-20T20:35:10.241655 #64115] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2514
|
-
F, [2018-11-20T20:35:10.241719 #64115] FATAL -- :
|
2515
|
-
F, [2018-11-20T20:35:10.241749 #64115] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2516
|
-
I, [2018-11-20T20:35:10.243765 #64115] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-20 20:35:10 +0800
|
2517
|
-
I, [2018-11-20T20:35:10.244372 #64115] INFO -- : Processing by DummyController#index as HTML
|
2518
|
-
I, [2018-11-20T20:35:10.244994 #64115] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
2519
|
-
I, [2018-11-20T20:35:10.245238 #64115] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
2520
|
-
I, [2018-11-20T20:35:10.245499 #64115] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2521
|
-
D, [2018-11-20T20:37:22.563906 #64146] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2522
|
-
D, [2018-11-20T20:37:22.564276 #64146] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2523
|
-
D, [2018-11-20T20:37:22.566499 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
2524
|
-
D, [2018-11-20T20:37:22.566935 #64146] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2525
|
-
D, [2018-11-20T20:37:22.567366 #64146] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2526
|
-
D, [2018-11-20T20:37:22.568656 #64146] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2527
|
-
D, [2018-11-20T20:37:22.576404 #64146] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
2528
|
-
D, [2018-11-20T20:37:22.579549 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2529
|
-
D, [2018-11-20T20:37:22.580413 #64146] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:37:22.579837"], ["updated_at", "2018-11-20 12:37:22.579837"]]
|
2530
|
-
D, [2018-11-20T20:37:22.580592 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2531
|
-
I, [2018-11-20T20:37:22.621221 #64146] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:37:22 +0800
|
2532
|
-
I, [2018-11-20T20:37:22.622975 #64146] INFO -- : Processing by DummyController#active_job as HTML
|
2533
|
-
I, [2018-11-20T20:37:22.630042 #64146] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2534
|
-
I, [2018-11-20T20:37:22.630912 #64146] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.7ms)
|
2535
|
-
I, [2018-11-20T20:37:22.631923 #64146] INFO -- : Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
2536
|
-
I, [2018-11-20T20:37:24.637173 #64146] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:37:24 +0800
|
2537
|
-
I, [2018-11-20T20:37:24.640847 #64146] INFO -- : Processing by DummyController#active_job as HTML
|
2538
|
-
I, [2018-11-20T20:37:24.641739 #64146] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2539
|
-
I, [2018-11-20T20:37:24.643393 #64146] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2540
|
-
I, [2018-11-20T20:37:24.645656 #64146] INFO -- : Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
2541
|
-
I, [2018-11-20T20:37:26.653383 #64146] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:37:26 +0800
|
2542
|
-
I, [2018-11-20T20:37:26.654308 #64146] INFO -- : Processing by DummyController#active_job as HTML
|
2543
|
-
I, [2018-11-20T20:37:26.655364 #64146] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2544
|
-
I, [2018-11-20T20:37:26.656186 #64146] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2545
|
-
I, [2018-11-20T20:37:26.656561 #64146] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2546
|
-
I, [2018-11-20T20:37:28.662797 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2547
|
-
I, [2018-11-20T20:37:28.664191 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2548
|
-
I, [2018-11-20T20:37:28.664569 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2549
|
-
F, [2018-11-20T20:37:28.679939 #64146] FATAL -- :
|
2550
|
-
F, [2018-11-20T20:37:28.680008 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2551
|
-
F, [2018-11-20T20:37:28.680037 #64146] FATAL -- :
|
2552
|
-
F, [2018-11-20T20:37:28.680064 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2553
|
-
I, [2018-11-20T20:37:28.682353 #64146] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2554
|
-
I, [2018-11-20T20:37:28.683089 #64146] INFO -- : Processing by DummyController#index as HTML
|
2555
|
-
I, [2018-11-20T20:37:28.683785 #64146] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
2556
|
-
I, [2018-11-20T20:37:28.684042 #64146] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
2557
|
-
I, [2018-11-20T20:37:28.684353 #64146] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2558
|
-
I, [2018-11-20T20:37:28.686617 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2559
|
-
I, [2018-11-20T20:37:28.687474 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2560
|
-
I, [2018-11-20T20:37:28.687763 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2561
|
-
F, [2018-11-20T20:37:28.692295 #64146] FATAL -- :
|
2562
|
-
F, [2018-11-20T20:37:28.697610 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2563
|
-
F, [2018-11-20T20:37:28.697670 #64146] FATAL -- :
|
2564
|
-
F, [2018-11-20T20:37:28.697707 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2565
|
-
I, [2018-11-20T20:37:28.699989 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2566
|
-
I, [2018-11-20T20:37:28.700886 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2567
|
-
I, [2018-11-20T20:37:28.701203 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2568
|
-
F, [2018-11-20T20:37:28.706233 #64146] FATAL -- :
|
2569
|
-
F, [2018-11-20T20:37:28.713043 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2570
|
-
F, [2018-11-20T20:37:28.713096 #64146] FATAL -- :
|
2571
|
-
F, [2018-11-20T20:37:28.713125 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2572
|
-
I, [2018-11-20T20:37:28.716163 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2573
|
-
I, [2018-11-20T20:37:28.717212 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2574
|
-
I, [2018-11-20T20:37:28.717729 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2575
|
-
F, [2018-11-20T20:37:28.722697 #64146] FATAL -- :
|
2576
|
-
F, [2018-11-20T20:37:28.722761 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2577
|
-
F, [2018-11-20T20:37:28.726933 #64146] FATAL -- :
|
2578
|
-
F, [2018-11-20T20:37:28.726977 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2579
|
-
I, [2018-11-20T20:37:28.729061 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2580
|
-
I, [2018-11-20T20:37:28.729819 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2581
|
-
I, [2018-11-20T20:37:28.730107 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2582
|
-
F, [2018-11-20T20:37:28.734836 #64146] FATAL -- :
|
2583
|
-
F, [2018-11-20T20:37:28.740950 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2584
|
-
F, [2018-11-20T20:37:28.741262 #64146] FATAL -- :
|
2585
|
-
F, [2018-11-20T20:37:28.741388 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2586
|
-
I, [2018-11-20T20:37:28.746343 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2587
|
-
I, [2018-11-20T20:37:28.747252 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2588
|
-
I, [2018-11-20T20:37:28.747600 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2589
|
-
F, [2018-11-20T20:37:28.752958 #64146] FATAL -- :
|
2590
|
-
F, [2018-11-20T20:37:28.757410 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2591
|
-
F, [2018-11-20T20:37:28.757505 #64146] FATAL -- :
|
2592
|
-
F, [2018-11-20T20:37:28.757551 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2593
|
-
I, [2018-11-20T20:37:28.761279 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2594
|
-
I, [2018-11-20T20:37:28.763411 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2595
|
-
I, [2018-11-20T20:37:28.764437 #64146] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2596
|
-
F, [2018-11-20T20:37:28.769997 #64146] FATAL -- :
|
2597
|
-
F, [2018-11-20T20:37:28.775765 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2598
|
-
F, [2018-11-20T20:37:28.775794 #64146] FATAL -- :
|
2599
|
-
F, [2018-11-20T20:37:28.775819 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2600
|
-
I, [2018-11-20T20:37:28.777790 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2601
|
-
I, [2018-11-20T20:37:28.778649 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2602
|
-
I, [2018-11-20T20:37:28.779138 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2603
|
-
F, [2018-11-20T20:37:28.785488 #64146] FATAL -- :
|
2604
|
-
F, [2018-11-20T20:37:28.789184 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2605
|
-
F, [2018-11-20T20:37:28.789216 #64146] FATAL -- :
|
2606
|
-
F, [2018-11-20T20:37:28.789241 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2607
|
-
I, [2018-11-20T20:37:28.790965 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2608
|
-
I, [2018-11-20T20:37:28.791591 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2609
|
-
I, [2018-11-20T20:37:28.791832 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2610
|
-
F, [2018-11-20T20:37:28.797408 #64146] FATAL -- :
|
2611
|
-
F, [2018-11-20T20:37:28.801180 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2612
|
-
F, [2018-11-20T20:37:28.801212 #64146] FATAL -- :
|
2613
|
-
F, [2018-11-20T20:37:28.801238 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2614
|
-
I, [2018-11-20T20:37:28.804103 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2615
|
-
I, [2018-11-20T20:37:28.805030 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2616
|
-
I, [2018-11-20T20:37:28.805284 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2617
|
-
F, [2018-11-20T20:37:28.810568 #64146] FATAL -- :
|
2618
|
-
F, [2018-11-20T20:37:28.814286 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2619
|
-
F, [2018-11-20T20:37:28.814326 #64146] FATAL -- :
|
2620
|
-
F, [2018-11-20T20:37:28.814354 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2621
|
-
I, [2018-11-20T20:37:28.816347 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2622
|
-
I, [2018-11-20T20:37:28.817251 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2623
|
-
I, [2018-11-20T20:37:28.817299 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2624
|
-
I, [2018-11-20T20:37:28.826570 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2625
|
-
I, [2018-11-20T20:37:28.826897 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2626
|
-
I, [2018-11-20T20:37:28.827199 #64146] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2627
|
-
I, [2018-11-20T20:37:28.829841 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2628
|
-
I, [2018-11-20T20:37:28.830594 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2629
|
-
I, [2018-11-20T20:37:28.830633 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2630
|
-
I, [2018-11-20T20:37:28.838698 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2631
|
-
I, [2018-11-20T20:37:28.838950 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2632
|
-
I, [2018-11-20T20:37:28.839247 #64146] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2633
|
-
I, [2018-11-20T20:37:28.841262 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2634
|
-
I, [2018-11-20T20:37:28.841943 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2635
|
-
I, [2018-11-20T20:37:28.841982 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2636
|
-
I, [2018-11-20T20:37:28.851098 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2637
|
-
I, [2018-11-20T20:37:28.851413 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2638
|
-
I, [2018-11-20T20:37:28.851727 #64146] INFO -- : Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
2639
|
-
I, [2018-11-20T20:37:28.853734 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2640
|
-
I, [2018-11-20T20:37:28.854425 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2641
|
-
I, [2018-11-20T20:37:28.854468 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2642
|
-
I, [2018-11-20T20:37:28.863327 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2643
|
-
I, [2018-11-20T20:37:28.863582 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2644
|
-
I, [2018-11-20T20:37:28.863866 #64146] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2645
|
-
I, [2018-11-20T20:37:28.865987 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2646
|
-
I, [2018-11-20T20:37:28.866733 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2647
|
-
I, [2018-11-20T20:37:28.866778 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2648
|
-
I, [2018-11-20T20:37:28.876065 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2649
|
-
I, [2018-11-20T20:37:28.876341 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2650
|
-
I, [2018-11-20T20:37:28.876672 #64146] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2651
|
-
I, [2018-11-20T20:37:28.879106 #64146] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2652
|
-
I, [2018-11-20T20:37:28.879864 #64146] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2653
|
-
I, [2018-11-20T20:37:28.879904 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2654
|
-
I, [2018-11-20T20:37:28.887718 #64146] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2655
|
-
I, [2018-11-20T20:37:28.887934 #64146] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2656
|
-
I, [2018-11-20T20:37:28.888203 #64146] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2657
|
-
I, [2018-11-20T20:37:28.890415 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2658
|
-
I, [2018-11-20T20:37:28.891094 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2659
|
-
I, [2018-11-20T20:37:28.891132 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2660
|
-
I, [2018-11-20T20:37:28.891362 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2661
|
-
F, [2018-11-20T20:37:28.895689 #64146] FATAL -- :
|
2662
|
-
F, [2018-11-20T20:37:28.899547 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2663
|
-
F, [2018-11-20T20:37:28.899580 #64146] FATAL -- :
|
2664
|
-
F, [2018-11-20T20:37:28.899605 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2665
|
-
I, [2018-11-20T20:37:28.901551 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2666
|
-
I, [2018-11-20T20:37:28.902259 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2667
|
-
I, [2018-11-20T20:37:28.902298 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2668
|
-
I, [2018-11-20T20:37:28.902543 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2669
|
-
F, [2018-11-20T20:37:28.906555 #64146] FATAL -- :
|
2670
|
-
F, [2018-11-20T20:37:28.906592 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2671
|
-
F, [2018-11-20T20:37:28.906618 #64146] FATAL -- :
|
2672
|
-
F, [2018-11-20T20:37:28.910648 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2673
|
-
I, [2018-11-20T20:37:28.914486 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2674
|
-
I, [2018-11-20T20:37:28.915220 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2675
|
-
I, [2018-11-20T20:37:28.915260 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2676
|
-
I, [2018-11-20T20:37:28.915509 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2677
|
-
F, [2018-11-20T20:37:28.919884 #64146] FATAL -- :
|
2678
|
-
F, [2018-11-20T20:37:28.923465 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2679
|
-
F, [2018-11-20T20:37:28.923536 #64146] FATAL -- :
|
2680
|
-
F, [2018-11-20T20:37:28.923564 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2681
|
-
I, [2018-11-20T20:37:28.925195 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2682
|
-
I, [2018-11-20T20:37:28.925941 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2683
|
-
I, [2018-11-20T20:37:28.925984 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2684
|
-
I, [2018-11-20T20:37:28.926220 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2685
|
-
F, [2018-11-20T20:37:28.930735 #64146] FATAL -- :
|
2686
|
-
F, [2018-11-20T20:37:28.934690 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2687
|
-
F, [2018-11-20T20:37:28.934724 #64146] FATAL -- :
|
2688
|
-
F, [2018-11-20T20:37:28.934747 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2689
|
-
I, [2018-11-20T20:37:28.936446 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2690
|
-
I, [2018-11-20T20:37:28.937128 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2691
|
-
I, [2018-11-20T20:37:28.937167 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2692
|
-
I, [2018-11-20T20:37:28.937433 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2693
|
-
F, [2018-11-20T20:37:28.941562 #64146] FATAL -- :
|
2694
|
-
F, [2018-11-20T20:37:28.941600 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2695
|
-
F, [2018-11-20T20:37:28.941628 #64146] FATAL -- :
|
2696
|
-
F, [2018-11-20T20:37:28.946145 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2697
|
-
I, [2018-11-20T20:37:28.948117 #64146] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2698
|
-
I, [2018-11-20T20:37:28.948999 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2699
|
-
I, [2018-11-20T20:37:28.949052 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2700
|
-
I, [2018-11-20T20:37:28.949328 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2701
|
-
F, [2018-11-20T20:37:28.954133 #64146] FATAL -- :
|
2702
|
-
F, [2018-11-20T20:37:28.959230 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2703
|
-
F, [2018-11-20T20:37:28.959268 #64146] FATAL -- :
|
2704
|
-
F, [2018-11-20T20:37:28.959293 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2705
|
-
I, [2018-11-20T20:37:28.961339 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2706
|
-
I, [2018-11-20T20:37:28.962245 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2707
|
-
I, [2018-11-20T20:37:28.962315 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2708
|
-
I, [2018-11-20T20:37:28.966729 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2709
|
-
I, [2018-11-20T20:37:28.970809 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2710
|
-
I, [2018-11-20T20:37:28.971101 #64146] INFO -- : Completed 200 OK in 9ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
2711
|
-
I, [2018-11-20T20:37:28.972977 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:28 +0800
|
2712
|
-
I, [2018-11-20T20:37:28.973637 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2713
|
-
I, [2018-11-20T20:37:28.973677 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2714
|
-
I, [2018-11-20T20:37:28.977913 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2715
|
-
I, [2018-11-20T20:37:28.978146 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2716
|
-
I, [2018-11-20T20:37:28.978545 #64146] INFO -- : Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2717
|
-
I, [2018-11-20T20:37:29.099128 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:29 +0800
|
2718
|
-
I, [2018-11-20T20:37:29.100546 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2719
|
-
I, [2018-11-20T20:37:29.100638 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2720
|
-
I, [2018-11-20T20:37:29.113276 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2721
|
-
I, [2018-11-20T20:37:29.113589 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2722
|
-
I, [2018-11-20T20:37:29.113935 #64146] INFO -- : Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2723
|
-
I, [2018-11-20T20:37:29.116388 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:29 +0800
|
2724
|
-
I, [2018-11-20T20:37:29.117245 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2725
|
-
I, [2018-11-20T20:37:29.117283 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2726
|
-
I, [2018-11-20T20:37:29.121682 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2727
|
-
I, [2018-11-20T20:37:29.121922 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2728
|
-
I, [2018-11-20T20:37:29.122175 #64146] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2729
|
-
I, [2018-11-20T20:37:29.230130 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:29 +0800
|
2730
|
-
I, [2018-11-20T20:37:29.231764 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2731
|
-
I, [2018-11-20T20:37:29.231821 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2732
|
-
I, [2018-11-20T20:37:29.241885 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2733
|
-
I, [2018-11-20T20:37:29.242189 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2734
|
-
I, [2018-11-20T20:37:29.242494 #64146] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2735
|
-
I, [2018-11-20T20:37:29.244883 #64146] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:37:29 +0800
|
2736
|
-
I, [2018-11-20T20:37:29.245614 #64146] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2737
|
-
I, [2018-11-20T20:37:29.245658 #64146] INFO -- : Parameters: {"foo"=>"bar"}
|
2738
|
-
I, [2018-11-20T20:37:29.250050 #64146] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2739
|
-
I, [2018-11-20T20:37:29.257483 #64146] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2740
|
-
I, [2018-11-20T20:37:29.257867 #64146] INFO -- : Completed 200 OK in 12ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
2741
|
-
I, [2018-11-20T20:37:29.261232 #64146] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:37:29 +0800
|
2742
|
-
I, [2018-11-20T20:37:29.263000 #64146] INFO -- : Processing by DummyController#delayed_job as HTML
|
2743
|
-
I, [2018-11-20T20:37:29.279613 #64146] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.5ms)
|
2744
|
-
F, [2018-11-20T20:37:29.299154 #64146] FATAL -- :
|
2745
|
-
F, [2018-11-20T20:37:29.311665 #64146] FATAL -- : AirbrakeTestError (delayed_job error):
|
2746
|
-
F, [2018-11-20T20:37:29.311709 #64146] FATAL -- :
|
2747
|
-
F, [2018-11-20T20:37:29.311737 #64146] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2748
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2749
|
-
I, [2018-11-20T20:37:33.323230 #64146] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:37:33 +0800
|
2750
|
-
I, [2018-11-20T20:37:33.324846 #64146] INFO -- : Processing by DummyController#delayed_job as HTML
|
2751
|
-
I, [2018-11-20T20:37:33.325762 #64146] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2752
|
-
F, [2018-11-20T20:37:33.327963 #64146] FATAL -- :
|
2753
|
-
F, [2018-11-20T20:37:33.328014 #64146] FATAL -- : AirbrakeTestError (delayed_job error):
|
2754
|
-
F, [2018-11-20T20:37:33.328046 #64146] FATAL -- :
|
2755
|
-
F, [2018-11-20T20:37:33.328078 #64146] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2756
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2757
|
-
I, [2018-11-20T20:37:35.337643 #64146] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:37:35 +0800
|
2758
|
-
I, [2018-11-20T20:37:35.339248 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2759
|
-
I, [2018-11-20T20:37:35.339599 #64146] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2760
|
-
F, [2018-11-20T20:37:35.349357 #64146] FATAL -- :
|
2761
|
-
F, [2018-11-20T20:37:35.349593 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2762
|
-
F, [2018-11-20T20:37:35.359553 #64146] FATAL -- :
|
2763
|
-
F, [2018-11-20T20:37:35.359599 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2764
|
-
I, [2018-11-20T20:37:37.363815 #64146] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:37:37 +0800
|
2765
|
-
I, [2018-11-20T20:37:37.368856 #64146] INFO -- : Processing by DummyController#crash as HTML
|
2766
|
-
I, [2018-11-20T20:37:37.369233 #64146] INFO -- : Completed 0 in 0ms (ActiveRecord: 0.0ms)
|
2767
|
-
F, [2018-11-20T20:37:37.373419 #64146] FATAL -- :
|
2768
|
-
F, [2018-11-20T20:37:37.373459 #64146] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2769
|
-
F, [2018-11-20T20:37:37.373485 #64146] FATAL -- :
|
2770
|
-
F, [2018-11-20T20:37:37.377401 #64146] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2771
|
-
I, [2018-11-20T20:37:42.393787 #64146] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-20 20:37:42 +0800
|
2772
|
-
I, [2018-11-20T20:37:42.395114 #64146] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2773
|
-
D, [2018-11-20T20:37:42.398263 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2774
|
-
D, [2018-11-20T20:37:42.398969 #64146] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2775
|
-
D, [2018-11-20T20:37:42.399225 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2776
|
-
I, [2018-11-20T20:37:42.410803 #64146] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.5ms)
|
2777
|
-
F, [2018-11-20T20:37:42.416668 #64146] FATAL -- :
|
2778
|
-
F, [2018-11-20T20:37:42.420915 #64146] FATAL -- : AirbrakeTestError (after_commit):
|
2779
|
-
F, [2018-11-20T20:37:42.420982 #64146] FATAL -- :
|
2780
|
-
F, [2018-11-20T20:37:42.421010 #64146] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2781
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2782
|
-
I, [2018-11-20T20:37:44.429725 #64146] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-20 20:37:44 +0800
|
2783
|
-
I, [2018-11-20T20:37:44.430770 #64146] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2784
|
-
D, [2018-11-20T20:37:44.431114 #64146] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2785
|
-
D, [2018-11-20T20:37:44.431835 #64146] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2786
|
-
D, [2018-11-20T20:37:44.432098 #64146] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2787
|
-
I, [2018-11-20T20:37:44.441020 #64146] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms)
|
2788
|
-
F, [2018-11-20T20:37:44.457858 #64146] FATAL -- :
|
2789
|
-
F, [2018-11-20T20:37:44.466710 #64146] FATAL -- : AirbrakeTestError (after_rollback):
|
2790
|
-
F, [2018-11-20T20:37:44.466758 #64146] FATAL -- :
|
2791
|
-
F, [2018-11-20T20:37:44.466785 #64146] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
2792
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2793
|
-
I, [2018-11-20T20:37:46.474621 #64146] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:37:46 +0800
|
2794
|
-
I, [2018-11-20T20:37:46.475649 #64146] INFO -- : Processing by DummyController#resque as HTML
|
2795
|
-
I, [2018-11-20T20:37:46.486495 #64146] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2796
|
-
I, [2018-11-20T20:37:46.486859 #64146] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.3ms)
|
2797
|
-
I, [2018-11-20T20:37:46.487200 #64146] INFO -- : Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
2798
|
-
I, [2018-11-20T20:37:46.489736 #64146] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:37:46 +0800
|
2799
|
-
I, [2018-11-20T20:37:46.490470 #64146] INFO -- : Processing by DummyController#resque as HTML
|
2800
|
-
I, [2018-11-20T20:37:46.491519 #64146] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2801
|
-
I, [2018-11-20T20:37:46.491770 #64146] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2802
|
-
I, [2018-11-20T20:37:46.492042 #64146] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2803
|
-
D, [2018-11-20T20:56:06.653004 #64819] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2804
|
-
D, [2018-11-20T20:56:06.653390 #64819] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2805
|
-
D, [2018-11-20T20:56:06.655855 #64819] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
2806
|
-
D, [2018-11-20T20:56:06.656297 #64819] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2807
|
-
D, [2018-11-20T20:56:06.656732 #64819] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2808
|
-
D, [2018-11-20T20:56:06.657976 #64819] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2809
|
-
D, [2018-11-20T20:56:06.666253 #64819] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
2810
|
-
D, [2018-11-20T20:56:06.669143 #64819] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2811
|
-
D, [2018-11-20T20:56:06.670009 #64819] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:56:06.669412"], ["updated_at", "2018-11-20 12:56:06.669412"]]
|
2812
|
-
D, [2018-11-20T20:56:06.670182 #64819] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2813
|
-
I, [2018-11-20T20:56:06.705661 #64819] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:56:06 +0800
|
2814
|
-
I, [2018-11-20T20:56:06.707464 #64819] INFO -- : Processing by DummyController#delayed_job as HTML
|
2815
|
-
I, [2018-11-20T20:56:06.726049 #64819] INFO -- : Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.4ms)
|
2816
|
-
F, [2018-11-20T20:56:06.742167 #64819] FATAL -- :
|
2817
|
-
F, [2018-11-20T20:56:06.745553 #64819] FATAL -- : AirbrakeTestError (delayed_job error):
|
2818
|
-
F, [2018-11-20T20:56:06.745593 #64819] FATAL -- :
|
2819
|
-
F, [2018-11-20T20:56:06.745625 #64819] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2820
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2821
|
-
I, [2018-11-20T20:56:10.753309 #64819] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-20 20:56:10 +0800
|
2822
|
-
I, [2018-11-20T20:56:10.754830 #64819] INFO -- : Processing by DummyController#delayed_job as HTML
|
2823
|
-
I, [2018-11-20T20:56:10.756109 #64819] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2824
|
-
F, [2018-11-20T20:56:10.757505 #64819] FATAL -- :
|
2825
|
-
F, [2018-11-20T20:56:10.757576 #64819] FATAL -- : AirbrakeTestError (delayed_job error):
|
2826
|
-
F, [2018-11-20T20:56:10.757608 #64819] FATAL -- :
|
2827
|
-
F, [2018-11-20T20:56:10.757637 #64819] FATAL -- : lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
|
2828
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
2829
|
-
I, [2018-11-20T20:56:12.765760 #64819] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2830
|
-
I, [2018-11-20T20:56:12.767024 #64819] INFO -- : Processing by DummyController#resque as HTML
|
2831
|
-
I, [2018-11-20T20:56:12.770710 #64819] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2832
|
-
I, [2018-11-20T20:56:12.771573 #64819] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.7ms)
|
2833
|
-
I, [2018-11-20T20:56:12.771965 #64819] INFO -- : Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
2834
|
-
I, [2018-11-20T20:56:12.774321 #64819] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2835
|
-
I, [2018-11-20T20:56:12.775160 #64819] INFO -- : Processing by DummyController#resque as HTML
|
2836
|
-
I, [2018-11-20T20:56:12.784063 #64819] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2837
|
-
I, [2018-11-20T20:56:12.784373 #64819] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2838
|
-
I, [2018-11-20T20:56:12.784655 #64819] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2839
|
-
I, [2018-11-20T20:56:12.787222 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2840
|
-
I, [2018-11-20T20:56:12.787997 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2841
|
-
I, [2018-11-20T20:56:12.788295 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2842
|
-
F, [2018-11-20T20:56:12.792976 #64819] FATAL -- :
|
2843
|
-
F, [2018-11-20T20:56:12.796916 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2844
|
-
F, [2018-11-20T20:56:12.796954 #64819] FATAL -- :
|
2845
|
-
F, [2018-11-20T20:56:12.796980 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2846
|
-
I, [2018-11-20T20:56:12.799098 #64819] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2847
|
-
I, [2018-11-20T20:56:12.799856 #64819] INFO -- : Processing by DummyController#index as HTML
|
2848
|
-
I, [2018-11-20T20:56:12.800593 #64819] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
2849
|
-
I, [2018-11-20T20:56:12.800850 #64819] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
2850
|
-
I, [2018-11-20T20:56:12.801144 #64819] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2851
|
-
I, [2018-11-20T20:56:12.802967 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2852
|
-
I, [2018-11-20T20:56:12.803662 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2853
|
-
I, [2018-11-20T20:56:12.803933 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2854
|
-
F, [2018-11-20T20:56:12.809221 #64819] FATAL -- :
|
2855
|
-
F, [2018-11-20T20:56:12.816071 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2856
|
-
F, [2018-11-20T20:56:12.816117 #64819] FATAL -- :
|
2857
|
-
F, [2018-11-20T20:56:12.816143 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2858
|
-
I, [2018-11-20T20:56:12.818222 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2859
|
-
I, [2018-11-20T20:56:12.819044 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2860
|
-
I, [2018-11-20T20:56:12.819327 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2861
|
-
F, [2018-11-20T20:56:12.824347 #64819] FATAL -- :
|
2862
|
-
F, [2018-11-20T20:56:12.829047 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2863
|
-
F, [2018-11-20T20:56:12.829107 #64819] FATAL -- :
|
2864
|
-
F, [2018-11-20T20:56:12.829137 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2865
|
-
I, [2018-11-20T20:56:12.831042 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2866
|
-
I, [2018-11-20T20:56:12.831740 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2867
|
-
I, [2018-11-20T20:56:12.832017 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2868
|
-
F, [2018-11-20T20:56:12.836549 #64819] FATAL -- :
|
2869
|
-
F, [2018-11-20T20:56:12.840743 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2870
|
-
F, [2018-11-20T20:56:12.840793 #64819] FATAL -- :
|
2871
|
-
F, [2018-11-20T20:56:12.840818 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2872
|
-
I, [2018-11-20T20:56:12.842824 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2873
|
-
I, [2018-11-20T20:56:12.843530 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2874
|
-
I, [2018-11-20T20:56:12.843823 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2875
|
-
F, [2018-11-20T20:56:12.848355 #64819] FATAL -- :
|
2876
|
-
F, [2018-11-20T20:56:12.848394 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2877
|
-
F, [2018-11-20T20:56:12.848418 #64819] FATAL -- :
|
2878
|
-
F, [2018-11-20T20:56:12.848441 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2879
|
-
I, [2018-11-20T20:56:12.966250 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2880
|
-
I, [2018-11-20T20:56:12.967458 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2881
|
-
I, [2018-11-20T20:56:12.967830 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2882
|
-
F, [2018-11-20T20:56:12.979286 #64819] FATAL -- :
|
2883
|
-
F, [2018-11-20T20:56:12.979345 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2884
|
-
F, [2018-11-20T20:56:12.979371 #64819] FATAL -- :
|
2885
|
-
F, [2018-11-20T20:56:12.979395 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2886
|
-
I, [2018-11-20T20:56:12.983916 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2887
|
-
I, [2018-11-20T20:56:12.984598 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2888
|
-
I, [2018-11-20T20:56:12.984862 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2889
|
-
F, [2018-11-20T20:56:12.989568 #64819] FATAL -- :
|
2890
|
-
F, [2018-11-20T20:56:12.993909 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2891
|
-
F, [2018-11-20T20:56:12.993955 #64819] FATAL -- :
|
2892
|
-
F, [2018-11-20T20:56:12.993980 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2893
|
-
I, [2018-11-20T20:56:12.996050 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:12 +0800
|
2894
|
-
I, [2018-11-20T20:56:12.996995 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2895
|
-
I, [2018-11-20T20:56:12.997270 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2896
|
-
F, [2018-11-20T20:56:13.001808 #64819] FATAL -- :
|
2897
|
-
F, [2018-11-20T20:56:13.005867 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2898
|
-
F, [2018-11-20T20:56:13.005921 #64819] FATAL -- :
|
2899
|
-
F, [2018-11-20T20:56:13.005950 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2900
|
-
I, [2018-11-20T20:56:13.008298 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2901
|
-
I, [2018-11-20T20:56:13.009173 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2902
|
-
I, [2018-11-20T20:56:13.009561 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2903
|
-
F, [2018-11-20T20:56:13.014772 #64819] FATAL -- :
|
2904
|
-
F, [2018-11-20T20:56:13.014813 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2905
|
-
F, [2018-11-20T20:56:13.014839 #64819] FATAL -- :
|
2906
|
-
F, [2018-11-20T20:56:13.018663 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2907
|
-
I, [2018-11-20T20:56:13.020933 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2908
|
-
I, [2018-11-20T20:56:13.021863 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2909
|
-
I, [2018-11-20T20:56:13.021916 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2910
|
-
I, [2018-11-20T20:56:13.026834 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2911
|
-
I, [2018-11-20T20:56:13.031712 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2912
|
-
I, [2018-11-20T20:56:13.032032 #64819] INFO -- : Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
2913
|
-
I, [2018-11-20T20:56:13.034492 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2914
|
-
I, [2018-11-20T20:56:13.035300 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2915
|
-
I, [2018-11-20T20:56:13.035340 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2916
|
-
I, [2018-11-20T20:56:13.040433 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2917
|
-
I, [2018-11-20T20:56:13.047373 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2918
|
-
I, [2018-11-20T20:56:13.047690 #64819] INFO -- : Completed 200 OK in 12ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
2919
|
-
I, [2018-11-20T20:56:13.050052 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2920
|
-
I, [2018-11-20T20:56:13.050806 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2921
|
-
I, [2018-11-20T20:56:13.050845 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2922
|
-
I, [2018-11-20T20:56:13.055344 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2923
|
-
I, [2018-11-20T20:56:13.060070 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2924
|
-
I, [2018-11-20T20:56:13.060442 #64819] INFO -- : Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
2925
|
-
I, [2018-11-20T20:56:13.062823 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2926
|
-
I, [2018-11-20T20:56:13.063632 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2927
|
-
I, [2018-11-20T20:56:13.063672 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2928
|
-
I, [2018-11-20T20:56:13.068173 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2929
|
-
I, [2018-11-20T20:56:13.068429 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2930
|
-
I, [2018-11-20T20:56:13.068692 #64819] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2931
|
-
I, [2018-11-20T20:56:13.175528 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2932
|
-
I, [2018-11-20T20:56:13.176965 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2933
|
-
I, [2018-11-20T20:56:13.177023 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2934
|
-
I, [2018-11-20T20:56:13.187677 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2935
|
-
I, [2018-11-20T20:56:13.188011 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2936
|
-
I, [2018-11-20T20:56:13.188366 #64819] INFO -- : Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
2937
|
-
I, [2018-11-20T20:56:13.191050 #64819] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2938
|
-
I, [2018-11-20T20:56:13.191963 #64819] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2939
|
-
I, [2018-11-20T20:56:13.192003 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2940
|
-
I, [2018-11-20T20:56:13.196227 #64819] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2941
|
-
I, [2018-11-20T20:56:13.201018 #64819] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2942
|
-
I, [2018-11-20T20:56:13.201325 #64819] INFO -- : Completed 200 OK in 9ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
2943
|
-
I, [2018-11-20T20:56:13.203854 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2944
|
-
I, [2018-11-20T20:56:13.204672 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2945
|
-
I, [2018-11-20T20:56:13.204712 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2946
|
-
I, [2018-11-20T20:56:13.204966 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2947
|
-
F, [2018-11-20T20:56:13.211867 #64819] FATAL -- :
|
2948
|
-
F, [2018-11-20T20:56:13.216088 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2949
|
-
F, [2018-11-20T20:56:13.216125 #64819] FATAL -- :
|
2950
|
-
F, [2018-11-20T20:56:13.216150 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2951
|
-
I, [2018-11-20T20:56:13.218149 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2952
|
-
I, [2018-11-20T20:56:13.218999 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2953
|
-
I, [2018-11-20T20:56:13.219038 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2954
|
-
I, [2018-11-20T20:56:13.219287 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2955
|
-
F, [2018-11-20T20:56:13.223790 #64819] FATAL -- :
|
2956
|
-
F, [2018-11-20T20:56:13.228139 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2957
|
-
F, [2018-11-20T20:56:13.228185 #64819] FATAL -- :
|
2958
|
-
F, [2018-11-20T20:56:13.228210 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2959
|
-
I, [2018-11-20T20:56:13.230124 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2960
|
-
I, [2018-11-20T20:56:13.231016 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2961
|
-
I, [2018-11-20T20:56:13.231055 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2962
|
-
I, [2018-11-20T20:56:13.231312 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2963
|
-
F, [2018-11-20T20:56:13.235599 #64819] FATAL -- :
|
2964
|
-
F, [2018-11-20T20:56:13.241443 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2965
|
-
F, [2018-11-20T20:56:13.241493 #64819] FATAL -- :
|
2966
|
-
F, [2018-11-20T20:56:13.241519 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2967
|
-
I, [2018-11-20T20:56:13.243516 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2968
|
-
I, [2018-11-20T20:56:13.244370 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2969
|
-
I, [2018-11-20T20:56:13.244409 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2970
|
-
I, [2018-11-20T20:56:13.244670 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2971
|
-
F, [2018-11-20T20:56:13.249033 #64819] FATAL -- :
|
2972
|
-
F, [2018-11-20T20:56:13.249071 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2973
|
-
F, [2018-11-20T20:56:13.249096 #64819] FATAL -- :
|
2974
|
-
F, [2018-11-20T20:56:13.249119 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2975
|
-
I, [2018-11-20T20:56:13.355885 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2976
|
-
I, [2018-11-20T20:56:13.357077 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2977
|
-
I, [2018-11-20T20:56:13.357149 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2978
|
-
I, [2018-11-20T20:56:13.357503 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2979
|
-
F, [2018-11-20T20:56:13.369935 #64819] FATAL -- :
|
2980
|
-
F, [2018-11-20T20:56:13.369992 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2981
|
-
F, [2018-11-20T20:56:13.370015 #64819] FATAL -- :
|
2982
|
-
F, [2018-11-20T20:56:13.370037 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2983
|
-
I, [2018-11-20T20:56:13.372232 #64819] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2984
|
-
I, [2018-11-20T20:56:13.373337 #64819] INFO -- : Processing by DummyController#crash as HTML
|
2985
|
-
I, [2018-11-20T20:56:13.373395 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2986
|
-
I, [2018-11-20T20:56:13.373689 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2987
|
-
F, [2018-11-20T20:56:13.377978 #64819] FATAL -- :
|
2988
|
-
F, [2018-11-20T20:56:13.378016 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2989
|
-
F, [2018-11-20T20:56:13.378041 #64819] FATAL -- :
|
2990
|
-
F, [2018-11-20T20:56:13.378066 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
2991
|
-
I, [2018-11-20T20:56:13.384457 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2992
|
-
I, [2018-11-20T20:56:13.385362 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2993
|
-
I, [2018-11-20T20:56:13.385399 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
2994
|
-
I, [2018-11-20T20:56:13.394293 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2995
|
-
I, [2018-11-20T20:56:13.394653 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2996
|
-
I, [2018-11-20T20:56:13.394949 #64819] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2997
|
-
I, [2018-11-20T20:56:13.397688 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
2998
|
-
I, [2018-11-20T20:56:13.398513 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2999
|
-
I, [2018-11-20T20:56:13.398552 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
3000
|
-
I, [2018-11-20T20:56:13.407441 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
3001
|
-
I, [2018-11-20T20:56:13.407763 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
3002
|
-
I, [2018-11-20T20:56:13.408044 #64819] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
3003
|
-
I, [2018-11-20T20:56:13.410418 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3004
|
-
I, [2018-11-20T20:56:13.411268 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
3005
|
-
I, [2018-11-20T20:56:13.411306 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
3006
|
-
I, [2018-11-20T20:56:13.420208 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
3007
|
-
I, [2018-11-20T20:56:13.420527 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
3008
|
-
I, [2018-11-20T20:56:13.420801 #64819] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
3009
|
-
I, [2018-11-20T20:56:13.423557 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3010
|
-
I, [2018-11-20T20:56:13.424510 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
3011
|
-
I, [2018-11-20T20:56:13.424558 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
3012
|
-
I, [2018-11-20T20:56:13.435337 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
3013
|
-
I, [2018-11-20T20:56:13.435628 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
3014
|
-
I, [2018-11-20T20:56:13.435933 #64819] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
3015
|
-
I, [2018-11-20T20:56:13.438379 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3016
|
-
I, [2018-11-20T20:56:13.439306 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
3017
|
-
I, [2018-11-20T20:56:13.439357 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
3018
|
-
I, [2018-11-20T20:56:13.448958 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
3019
|
-
I, [2018-11-20T20:56:13.449239 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
3020
|
-
I, [2018-11-20T20:56:13.449510 #64819] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
3021
|
-
I, [2018-11-20T20:56:13.451705 #64819] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3022
|
-
I, [2018-11-20T20:56:13.452484 #64819] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
3023
|
-
I, [2018-11-20T20:56:13.452522 #64819] INFO -- : Parameters: {"foo"=>"bar"}
|
3024
|
-
I, [2018-11-20T20:56:13.461491 #64819] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
3025
|
-
I, [2018-11-20T20:56:13.461796 #64819] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
3026
|
-
I, [2018-11-20T20:56:13.462112 #64819] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
3027
|
-
I, [2018-11-20T20:56:13.465787 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3028
|
-
I, [2018-11-20T20:56:13.466758 #64819] INFO -- : Processing by DummyController#crash as HTML
|
3029
|
-
I, [2018-11-20T20:56:13.467022 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
3030
|
-
F, [2018-11-20T20:56:13.471770 #64819] FATAL -- :
|
3031
|
-
F, [2018-11-20T20:56:13.475877 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
3032
|
-
F, [2018-11-20T20:56:13.475925 #64819] FATAL -- :
|
3033
|
-
F, [2018-11-20T20:56:13.475960 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3034
|
-
I, [2018-11-20T20:56:13.478433 #64819] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-20 20:56:13 +0800
|
3035
|
-
I, [2018-11-20T20:56:13.479116 #64819] INFO -- : Processing by DummyController#crash as HTML
|
3036
|
-
I, [2018-11-20T20:56:13.479358 #64819] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
3037
|
-
F, [2018-11-20T20:56:13.483754 #64819] FATAL -- :
|
3038
|
-
F, [2018-11-20T20:56:13.483797 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
3039
|
-
F, [2018-11-20T20:56:13.483820 #64819] FATAL -- :
|
3040
|
-
F, [2018-11-20T20:56:13.489261 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3041
|
-
I, [2018-11-20T20:56:15.499423 #64819] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:56:15 +0800
|
3042
|
-
I, [2018-11-20T20:56:15.505482 #64819] INFO -- : Processing by DummyController#crash as HTML
|
3043
|
-
I, [2018-11-20T20:56:15.505944 #64819] INFO -- : Completed 0 in 0ms (ActiveRecord: 0.0ms)
|
3044
|
-
F, [2018-11-20T20:56:15.510971 #64819] FATAL -- :
|
3045
|
-
F, [2018-11-20T20:56:15.514357 #64819] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
3046
|
-
F, [2018-11-20T20:56:15.514393 #64819] FATAL -- :
|
3047
|
-
F, [2018-11-20T20:56:15.514415 #64819] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3048
|
-
I, [2018-11-20T20:56:17.524225 #64819] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:56:17 +0800
|
3049
|
-
I, [2018-11-20T20:56:17.525272 #64819] INFO -- : Processing by DummyController#active_job as HTML
|
3050
|
-
I, [2018-11-20T20:56:17.526594 #64819] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
3051
|
-
I, [2018-11-20T20:56:17.526985 #64819] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
3052
|
-
I, [2018-11-20T20:56:17.527315 #64819] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
3053
|
-
I, [2018-11-20T20:56:19.536081 #64819] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:56:19 +0800
|
3054
|
-
I, [2018-11-20T20:56:19.537258 #64819] INFO -- : Processing by DummyController#active_job as HTML
|
3055
|
-
I, [2018-11-20T20:56:19.538337 #64819] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
3056
|
-
I, [2018-11-20T20:56:19.538689 #64819] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
3057
|
-
I, [2018-11-20T20:56:19.539079 #64819] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
3058
|
-
I, [2018-11-20T20:56:21.547139 #64819] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-20 20:56:21 +0800
|
3059
|
-
I, [2018-11-20T20:56:21.548085 #64819] INFO -- : Processing by DummyController#active_job as HTML
|
3060
|
-
I, [2018-11-20T20:56:21.549165 #64819] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
3061
|
-
I, [2018-11-20T20:56:21.549506 #64819] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
3062
|
-
I, [2018-11-20T20:56:21.549891 #64819] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
3063
|
-
I, [2018-11-20T20:56:23.553533 #64819] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-20 20:56:23 +0800
|
3064
|
-
I, [2018-11-20T20:56:23.554584 #64819] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
3065
|
-
D, [2018-11-20T20:56:23.557557 #64819] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
3066
|
-
D, [2018-11-20T20:56:23.558267 #64819] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
3067
|
-
D, [2018-11-20T20:56:23.558512 #64819] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
3068
|
-
I, [2018-11-20T20:56:23.562863 #64819] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.5ms)
|
3069
|
-
F, [2018-11-20T20:56:23.575696 #64819] FATAL -- :
|
3070
|
-
F, [2018-11-20T20:56:23.579587 #64819] FATAL -- : AirbrakeTestError (after_commit):
|
3071
|
-
F, [2018-11-20T20:56:23.579623 #64819] FATAL -- :
|
3072
|
-
F, [2018-11-20T20:56:23.579649 #64819] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
3073
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
3074
|
-
I, [2018-11-20T20:56:25.583574 #64819] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-20 20:56:25 +0800
|
3075
|
-
I, [2018-11-20T20:56:25.584674 #64819] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
3076
|
-
D, [2018-11-20T20:56:25.585040 #64819] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
3077
|
-
D, [2018-11-20T20:56:25.585930 #64819] DEBUG -- : [1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
3078
|
-
D, [2018-11-20T20:56:25.586540 #64819] DEBUG -- : [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
3079
|
-
I, [2018-11-20T20:56:25.597433 #64819] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.3ms)
|
3080
|
-
F, [2018-11-20T20:56:25.614105 #64819] FATAL -- :
|
3081
|
-
F, [2018-11-20T20:56:25.614202 #64819] FATAL -- : AirbrakeTestError (after_rollback):
|
3082
|
-
F, [2018-11-20T20:56:25.622739 #64819] FATAL -- :
|
3083
|
-
F, [2018-11-20T20:56:25.622819 #64819] FATAL -- : lib/airbrake/rails/active_record.rb:25:in `run_callbacks'
|
3084
|
-
lib/airbrake/rack/middleware.rb:54:in `call'
|
3085
|
-
D, [2018-11-20T20:57:06.973432 #64858] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3086
|
-
D, [2018-11-20T20:57:06.973959 #64858] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
3087
|
-
D, [2018-11-20T20:57:06.976175 #64858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
3088
|
-
D, [2018-11-20T20:57:06.976614 #64858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
3089
|
-
D, [2018-11-20T20:57:06.977065 #64858] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
3090
|
-
D, [2018-11-20T20:57:06.978390 #64858] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
3091
|
-
D, [2018-11-20T20:57:06.986810 #64858] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
3092
|
-
D, [2018-11-20T20:57:06.989831 #64858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
3093
|
-
D, [2018-11-20T20:57:06.990704 #64858] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:57:06.990116"], ["updated_at", "2018-11-20 12:57:06.990116"]]
|
3094
|
-
D, [2018-11-20T20:57:06.990897 #64858] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
3095
|
-
I, [2018-11-20T20:57:07.025898 #64858] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:57:07 +0800
|
3096
|
-
I, [2018-11-20T20:57:07.031759 #64858] INFO -- : Processing by DummyController#crash as HTML
|
3097
|
-
I, [2018-11-20T20:57:07.035990 #64858] INFO -- : Completed 0 in 4ms (ActiveRecord: 0.0ms)
|
3098
|
-
F, [2018-11-20T20:57:07.047390 #64858] FATAL -- :
|
3099
|
-
F, [2018-11-20T20:57:07.052170 #64858] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
3100
|
-
F, [2018-11-20T20:57:07.052251 #64858] FATAL -- :
|
3101
|
-
F, [2018-11-20T20:57:07.052298 #64858] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3102
|
-
D, [2018-11-20T20:57:43.616902 #64873] DEBUG -- : [1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3103
|
-
D, [2018-11-20T20:57:43.617315 #64873] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
3104
|
-
D, [2018-11-20T20:57:43.619727 #64873] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
3105
|
-
D, [2018-11-20T20:57:43.620210 #64873] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
3106
|
-
D, [2018-11-20T20:57:43.620661 #64873] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
3107
|
-
D, [2018-11-20T20:57:43.621930 #64873] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
3108
|
-
D, [2018-11-20T20:57:43.630390 #64873] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
3109
|
-
D, [2018-11-20T20:57:43.633703 #64873] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
3110
|
-
D, [2018-11-20T20:57:43.634653 #64873] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:57:43.634014"], ["updated_at", "2018-11-20 12:57:43.634014"]]
|
3111
|
-
D, [2018-11-20T20:57:43.634848 #64873] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
3112
|
-
I, [2018-11-20T20:57:43.674372 #64873] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:57:43 +0800
|
3113
|
-
I, [2018-11-20T20:57:43.679634 #64873] INFO -- : Processing by DummyController#crash as HTML
|
3114
|
-
F, [2018-11-20T20:57:43.703955 #64873] FATAL -- :
|
3115
|
-
F, [2018-11-20T20:57:43.713284 #64873] FATAL -- : RSpec::Mocks::MockExpectationError (#<ActionDispatch::ExceptionWrapper (class)> received :status_code_for_exception with unexpected arguments
|
3116
|
-
expected: (AirbrakeTestError)
|
3117
|
-
got: ("AirbrakeTestError")
|
3118
|
-
Diff:[0m
|
3119
|
-
[0m[34m@@ -1,2 +1,2 @@
|
3120
|
-
[0m[31m-[AirbrakeTestError]
|
3121
|
-
[0m[32m+["AirbrakeTestError"]
|
3122
|
-
[0m):
|
3123
|
-
F, [2018-11-20T20:57:43.713410 #64873] FATAL -- :
|
3124
|
-
F, [2018-11-20T20:57:43.713500 #64873] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3125
|
-
D, [2018-11-20T20:58:09.539118 #64885] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3126
|
-
D, [2018-11-20T20:58:09.539511 #64885] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
3127
|
-
D, [2018-11-20T20:58:09.541947 #64885] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
3128
|
-
D, [2018-11-20T20:58:09.542583 #64885] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
3129
|
-
D, [2018-11-20T20:58:09.543044 #64885] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
3130
|
-
D, [2018-11-20T20:58:09.544344 #64885] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
3131
|
-
D, [2018-11-20T20:58:09.552882 #64885] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
3132
|
-
D, [2018-11-20T20:58:09.555686 #64885] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
3133
|
-
D, [2018-11-20T20:58:09.556572 #64885] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:58:09.555978"], ["updated_at", "2018-11-20 12:58:09.555978"]]
|
3134
|
-
D, [2018-11-20T20:58:09.556760 #64885] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
3135
|
-
I, [2018-11-20T20:58:09.596004 #64885] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:58:09 +0800
|
3136
|
-
I, [2018-11-20T20:58:09.601428 #64885] INFO -- : Processing by DummyController#crash as HTML
|
3137
|
-
F, [2018-11-20T20:58:09.626584 #64885] FATAL -- :
|
3138
|
-
F, [2018-11-20T20:58:09.633965 #64885] FATAL -- : RSpec::Mocks::MockExpectationError (#<ActionDispatch::ExceptionWrapper (class)> received :status_code_for_exception with unexpected arguments
|
3139
|
-
expected: (AirbrakeTestError)
|
3140
|
-
got: ("AirbrakeTestError")
|
3141
|
-
Diff:[0m
|
3142
|
-
[0m[34m@@ -1,2 +1,2 @@
|
3143
|
-
[0m[31m-[AirbrakeTestError]
|
3144
|
-
[0m[32m+["AirbrakeTestError"]
|
3145
|
-
[0m
|
3146
|
-
Please stub a default value first if message might be received with other args as well.
|
3147
|
-
):
|
3148
|
-
F, [2018-11-20T20:58:09.634042 #64885] FATAL -- :
|
3149
|
-
F, [2018-11-20T20:58:09.634072 #64885] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|
3150
|
-
D, [2018-11-20T20:58:25.491212 #64898] DEBUG -- : [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3151
|
-
D, [2018-11-20T20:58:25.491668 #64898] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
3152
|
-
D, [2018-11-20T20:58:25.494265 #64898] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
3153
|
-
D, [2018-11-20T20:58:25.494798 #64898] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE 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, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
3154
|
-
D, [2018-11-20T20:58:25.495277 #64898] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
3155
|
-
D, [2018-11-20T20:58:25.496700 #64898] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
3156
|
-
D, [2018-11-20T20:58:25.506010 #64898] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
3157
|
-
D, [2018-11-20T20:58:25.509064 #64898] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
3158
|
-
D, [2018-11-20T20:58:25.509971 #64898] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-11-20 12:58:25.509332"], ["updated_at", "2018-11-20 12:58:25.509332"]]
|
3159
|
-
D, [2018-11-20T20:58:25.510189 #64898] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
3160
|
-
I, [2018-11-20T20:58:25.545216 #64898] INFO -- : Started HEAD "/crash" for 127.0.0.1 at 2018-11-20 20:58:25 +0800
|
3161
|
-
I, [2018-11-20T20:58:25.553855 #64898] INFO -- : Processing by DummyController#crash as HTML
|
3162
|
-
I, [2018-11-20T20:58:25.554291 #64898] INFO -- : Completed 0 in 0ms (ActiveRecord: 0.0ms)
|
3163
|
-
F, [2018-11-20T20:58:25.565632 #64898] FATAL -- :
|
3164
|
-
F, [2018-11-20T20:58:25.570313 #64898] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
3165
|
-
F, [2018-11-20T20:58:25.570376 #64898] FATAL -- :
|
3166
|
-
F, [2018-11-20T20:58:25.570412 #64898] FATAL -- : lib/airbrake/rack/middleware.rb:54:in `call'
|