airbrake 5.0.4 → 5.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/airbrake/rack/notice_builder.rb +28 -0
- data/lib/airbrake/rack/user.rb +2 -1
- data/lib/airbrake/version.rb +1 -1
- data/spec/apps/rails/logs/32.log +214 -0
- data/spec/apps/rails/logs/40.log +452 -0
- data/spec/apps/rails/logs/41.log +457 -0
- data/spec/apps/rails/logs/42.log +980 -0
- data/spec/apps/rails/logs/50.log +465 -0
- data/spec/integration/rails/rails_spec.rb +1 -1
- data/spec/integration/shared_examples/rack_examples.rb +21 -1
- data/spec/unit/rack/user_spec.rb +19 -6
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9fb3a24e2ef1921f245f81469badb794354224d
|
4
|
+
data.tar.gz: b35c155e6ac5a49871aa16b40801e357f27205c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf060e37c464c0054d033b6e615a45645cfa43c56431689309042071e178779fcd3ebc4688207d062ee9d68cc805653f765c2bac3a7301763fb6203b4b3659d0
|
7
|
+
data.tar.gz: 2dd49353df42dd92b7017b97cf0ccc888cff6ec21d886a531c21b1aefeb9fba886b7cf36038dc3290ae03b75b0541fc8292b8c6663886ee928849ed3d6f5544f
|
@@ -4,6 +4,15 @@ module Airbrake
|
|
4
4
|
# A helper class for filling notices with all sorts of useful information
|
5
5
|
# coming from the Rack environment.
|
6
6
|
class NoticeBuilder
|
7
|
+
##
|
8
|
+
# @return [Array<String>] the prefixes of the majority of HTTP headers in
|
9
|
+
# Rack (some prefixes match the header names for simplicity)
|
10
|
+
HTTP_HEADER_PREFIXES = [
|
11
|
+
'HTTP_'.freeze,
|
12
|
+
'CONTENT_TYPE'.freeze,
|
13
|
+
'CONTENT_LENGTH'.freeze
|
14
|
+
].freeze
|
15
|
+
|
7
16
|
##
|
8
17
|
# @param [Hash{String=>Object}] rack_env The Rack environment
|
9
18
|
def initialize(rack_env)
|
@@ -34,6 +43,7 @@ module Airbrake
|
|
34
43
|
add_context(notice)
|
35
44
|
add_session(notice)
|
36
45
|
add_params(notice)
|
46
|
+
add_environment(notice)
|
37
47
|
|
38
48
|
notice
|
39
49
|
end
|
@@ -70,6 +80,24 @@ module Airbrake
|
|
70
80
|
params = @request.env['action_dispatch.request.parameters']
|
71
81
|
notice[:params] = params if params
|
72
82
|
end
|
83
|
+
|
84
|
+
def add_environment(notice)
|
85
|
+
notice[:environment] = {
|
86
|
+
httpMethod: @request.request_method,
|
87
|
+
referer: @request.referer,
|
88
|
+
headers: request_headers
|
89
|
+
}
|
90
|
+
end
|
91
|
+
|
92
|
+
def request_headers
|
93
|
+
@rack_env.map.with_object({}) do |(key, value), headers|
|
94
|
+
if HTTP_HEADER_PREFIXES.any? { |prefix| key.to_s.start_with?(prefix) }
|
95
|
+
headers[key] = value
|
96
|
+
end
|
97
|
+
|
98
|
+
headers
|
99
|
+
end
|
100
|
+
end
|
73
101
|
end
|
74
102
|
end
|
75
103
|
end
|
data/lib/airbrake/rack/user.rb
CHANGED
@@ -18,7 +18,8 @@ module Airbrake
|
|
18
18
|
|
19
19
|
# Fallback mode (OmniAuth support included). Works only for Rails.
|
20
20
|
controller = rack_env['action_controller.instance']
|
21
|
-
|
21
|
+
return unless controller.respond_to?(:current_user)
|
22
|
+
new(controller.current_user) if controller.current_user
|
22
23
|
end
|
23
24
|
|
24
25
|
def initialize(user)
|
data/lib/airbrake/version.rb
CHANGED
@@ -0,0 +1,214 @@
|
|
1
|
+
# Logfile created on 2016-02-08 16:21:45 +0200 by logger.rb/53141
|
2
|
+
Connecting to database specified by DATABASE_URL
|
3
|
+
[1m[36m (1.2ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
5
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6
|
+
[1m[35m (0.4ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
7
|
+
Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
8
|
+
Processing by DummyController#active_record_after_commit as HTML
|
9
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
11
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
12
|
+
#<AirbrakeTestError: after_commit>
|
13
|
+
Rendered dummy/active_record_after_commit.html.erb within layouts/application (1.0ms)
|
14
|
+
Completed 200 OK in 29.9ms (Views: 7.2ms | ActiveRecord: 0.8ms)
|
15
|
+
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
16
|
+
Processing by DummyController#active_record_after_rollback as HTML
|
17
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
19
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
20
|
+
#<AirbrakeTestError: after_rollback>
|
21
|
+
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.3ms)
|
22
|
+
Completed 200 OK in 35.2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
23
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
24
|
+
Processing by DummyController#crash as HTML
|
25
|
+
Completed 500 Internal Server Error in 0.5ms
|
26
|
+
|
27
|
+
AirbrakeTestError (AirbrakeTestError):
|
28
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
29
|
+
|
30
|
+
|
31
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
32
|
+
Processing by DummyController#crash as HTML
|
33
|
+
Completed 500 Internal Server Error in 0.5ms
|
34
|
+
|
35
|
+
AirbrakeTestError (AirbrakeTestError):
|
36
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
37
|
+
|
38
|
+
|
39
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
40
|
+
Processing by DummyController#crash as HTML
|
41
|
+
Completed 500 Internal Server Error in 0.3ms
|
42
|
+
|
43
|
+
AirbrakeTestError (AirbrakeTestError):
|
44
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
45
|
+
|
46
|
+
|
47
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
48
|
+
Processing by DummyController#crash as HTML
|
49
|
+
Completed 500 Internal Server Error in 0.5ms
|
50
|
+
|
51
|
+
AirbrakeTestError (AirbrakeTestError):
|
52
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
53
|
+
|
54
|
+
|
55
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
56
|
+
Processing by DummyController#crash as HTML
|
57
|
+
Completed 500 Internal Server Error in 0.4ms
|
58
|
+
|
59
|
+
AirbrakeTestError (AirbrakeTestError):
|
60
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
61
|
+
|
62
|
+
|
63
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
64
|
+
Processing by DummyController#crash as HTML
|
65
|
+
Completed 500 Internal Server Error in 0.4ms
|
66
|
+
|
67
|
+
AirbrakeTestError (AirbrakeTestError):
|
68
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
69
|
+
|
70
|
+
|
71
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
72
|
+
Processing by DummyController#crash as HTML
|
73
|
+
Completed 500 Internal Server Error in 0.5ms
|
74
|
+
|
75
|
+
AirbrakeTestError (AirbrakeTestError):
|
76
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
77
|
+
|
78
|
+
|
79
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
80
|
+
Processing by DummyController#crash as HTML
|
81
|
+
Completed 500 Internal Server Error in 0.3ms
|
82
|
+
|
83
|
+
AirbrakeTestError (AirbrakeTestError):
|
84
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
85
|
+
|
86
|
+
|
87
|
+
Started GET "/" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
88
|
+
Processing by DummyController#index as HTML
|
89
|
+
Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
90
|
+
Completed 200 OK in 1.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
91
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
92
|
+
Processing by DummyController#crash as HTML
|
93
|
+
Completed 500 Internal Server Error in 0.3ms
|
94
|
+
|
95
|
+
AirbrakeTestError (AirbrakeTestError):
|
96
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
97
|
+
|
98
|
+
|
99
|
+
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
100
|
+
Processing by DummyController#notify_airbrake_helper as HTML
|
101
|
+
Parameters: {"foo"=>"bar"}
|
102
|
+
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.6ms)
|
103
|
+
Completed 200 OK in 30.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
104
|
+
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
105
|
+
Processing by DummyController#notify_airbrake_helper as HTML
|
106
|
+
Parameters: {"foo"=>"bar"}
|
107
|
+
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
108
|
+
Completed 200 OK in 6.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
109
|
+
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
110
|
+
Processing by DummyController#notify_airbrake_helper as HTML
|
111
|
+
Parameters: {"foo"=>"bar"}
|
112
|
+
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
113
|
+
Completed 200 OK in 30.7ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
114
|
+
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
115
|
+
Processing by DummyController#notify_airbrake_helper as HTML
|
116
|
+
Parameters: {"foo"=>"bar"}
|
117
|
+
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
118
|
+
Completed 200 OK in 5.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
119
|
+
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
120
|
+
Processing by DummyController#notify_airbrake_helper as HTML
|
121
|
+
Parameters: {"foo"=>"bar"}
|
122
|
+
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
123
|
+
Completed 200 OK in 27.1ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
124
|
+
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
125
|
+
Processing by DummyController#crash as HTML
|
126
|
+
Parameters: {"foo"=>"bar"}
|
127
|
+
Completed 500 Internal Server Error in 0.3ms
|
128
|
+
|
129
|
+
AirbrakeTestError (AirbrakeTestError):
|
130
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
134
|
+
Processing by DummyController#crash as HTML
|
135
|
+
Parameters: {"foo"=>"bar"}
|
136
|
+
Completed 500 Internal Server Error in 0.5ms
|
137
|
+
|
138
|
+
AirbrakeTestError (AirbrakeTestError):
|
139
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
140
|
+
|
141
|
+
|
142
|
+
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
143
|
+
Processing by DummyController#crash as HTML
|
144
|
+
Parameters: {"foo"=>"bar"}
|
145
|
+
Completed 500 Internal Server Error in 0.3ms
|
146
|
+
|
147
|
+
AirbrakeTestError (AirbrakeTestError):
|
148
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
152
|
+
Processing by DummyController#crash as HTML
|
153
|
+
Parameters: {"foo"=>"bar"}
|
154
|
+
Completed 500 Internal Server Error in 0.6ms
|
155
|
+
|
156
|
+
AirbrakeTestError (AirbrakeTestError):
|
157
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
161
|
+
Processing by DummyController#crash as HTML
|
162
|
+
Parameters: {"foo"=>"bar"}
|
163
|
+
Completed 500 Internal Server Error in 0.3ms
|
164
|
+
|
165
|
+
AirbrakeTestError (AirbrakeTestError):
|
166
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
167
|
+
|
168
|
+
|
169
|
+
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
170
|
+
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
171
|
+
Parameters: {"foo"=>"bar"}
|
172
|
+
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.5ms)
|
173
|
+
Completed 200 OK in 27.2ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
174
|
+
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
175
|
+
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
176
|
+
Parameters: {"foo"=>"bar"}
|
177
|
+
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
178
|
+
Completed 200 OK in 19.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
179
|
+
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
180
|
+
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
181
|
+
Parameters: {"foo"=>"bar"}
|
182
|
+
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
183
|
+
Completed 200 OK in 20.9ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
184
|
+
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
185
|
+
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
186
|
+
Parameters: {"foo"=>"bar"}
|
187
|
+
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
188
|
+
Completed 200 OK in 23.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
189
|
+
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
190
|
+
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
191
|
+
Parameters: {"foo"=>"bar"}
|
192
|
+
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
193
|
+
Completed 200 OK in 18.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
194
|
+
Started GET "/delayed_job" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
195
|
+
Processing by DummyController#delayed_job as HTML
|
196
|
+
Completed 500 Internal Server Error in 17.6ms
|
197
|
+
|
198
|
+
AirbrakeTestError (delayed_job error):
|
199
|
+
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
200
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
201
|
+
|
202
|
+
|
203
|
+
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:52 +0200
|
204
|
+
Processing by DummyController#crash as HTML
|
205
|
+
Completed 500 Internal Server Error in 0.5ms
|
206
|
+
|
207
|
+
AirbrakeTestError (AirbrakeTestError):
|
208
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/resque" for 127.0.0.1 at 2016-02-08 16:21:52 +0200
|
212
|
+
Processing by DummyController#resque as HTML
|
213
|
+
Rendered dummy/resque.html.erb within layouts/application (0.7ms)
|
214
|
+
Completed 200 OK in 37.7ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
@@ -0,0 +1,452 @@
|
|
1
|
+
# Logfile created on 2016-02-08 16:22:05 +0200 by logger.rb/53141
|
2
|
+
D, [2016-02-08T16:22:06.313303 #22300] DEBUG -- : [1m[36m (1.3ms)[0m [1mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255)) [0m
|
3
|
+
D, [2016-02-08T16:22:06.338177 #22300] DEBUG -- : [1m[35m (0.4ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime)
|
4
|
+
D, [2016-02-08T16:22:06.338998 #22300] DEBUG -- : [1m[36m (0.2ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
5
|
+
I, [2016-02-08T16:22:06.381014 #22300] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-02-08 16:22:06 +0200
|
6
|
+
I, [2016-02-08T16:22:06.395779 #22300] INFO -- : Processing by DummyController#delayed_job as HTML
|
7
|
+
I, [2016-02-08T16:22:06.412729 #22300] INFO -- : Completed 500 Internal Server Error in 17ms
|
8
|
+
F, [2016-02-08T16:22:06.438730 #22300] FATAL -- :
|
9
|
+
AirbrakeTestError (delayed_job error):
|
10
|
+
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
11
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
12
|
+
|
13
|
+
|
14
|
+
I, [2016-02-08T16:22:10.451295 #22300] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
15
|
+
I, [2016-02-08T16:22:10.454753 #22300] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
16
|
+
D, [2016-02-08T16:22:10.455595 #22300] DEBUG -- : [1m[35m (0.2ms)[0m begin transaction
|
17
|
+
D, [2016-02-08T16:22:10.465724 #22300] DEBUG -- : [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
18
|
+
D, [2016-02-08T16:22:10.466450 #22300] DEBUG -- : [1m[35m (0.2ms)[0m rollback transaction
|
19
|
+
E, [2016-02-08T16:22:10.498959 #22300] ERROR -- : after_rollback (AirbrakeTestError)
|
20
|
+
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:52:in `raise_error_after_rollback'
|
21
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:375:in `_run__328253211629888034__rollback__callbacks'
|
22
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
23
|
+
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rails/active_record.rb:31:in `run_callbacks'
|
24
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:306:in `rolledback!'
|
25
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:136:in `block in rollback_records'
|
26
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:134:in `each'
|
27
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:134:in `rollback_records'
|
28
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:176:in `perform_rollback'
|
29
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
|
30
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:241:in `rollback_transaction'
|
31
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `rescue in within_new_transaction'
|
32
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:222:in `within_new_transaction'
|
33
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `transaction'
|
34
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:209:in `transaction'
|
35
|
+
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:120:in `active_record_after_rollback'
|
36
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
37
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:189:in `process_action'
|
38
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
39
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
40
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__478450324802621910__process_action__callbacks'
|
41
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
42
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
43
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
44
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
45
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `block in instrument'
|
46
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
47
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `instrument'
|
48
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
49
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
50
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
51
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:136:in `process'
|
52
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/rendering.rb:44:in `process'
|
53
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:195:in `dispatch'
|
54
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
55
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:231:in `block in action'
|
56
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
57
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:50:in `call'
|
58
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
59
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `each'
|
60
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `call'
|
61
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:676:in `call'
|
62
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:35:in `block in call'
|
63
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `catch'
|
64
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `call'
|
65
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/etag.rb:23:in `call'
|
66
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/conditionalget.rb:25:in `call'
|
67
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/head.rb:11:in `call'
|
68
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
69
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
70
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:225:in `context'
|
71
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:220:in `call'
|
72
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
73
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/query_cache.rb:36:in `call'
|
74
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
75
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
76
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__1586469104705807260__call__callbacks'
|
77
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
78
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
79
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
80
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
81
|
+
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rack/middleware.rb:22:in `call'
|
82
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
83
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
84
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:38:in `call_app'
|
85
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:22:in `call'
|
86
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
87
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/methodoverride.rb:21:in `call'
|
88
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/runtime.rb:17:in `call'
|
89
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
90
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/lock.rb:17:in `call'
|
91
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/static.rb:84:in `call'
|
92
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/sendfile.rb:112:in `call'
|
93
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/engine.rb:511:in `call'
|
94
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/application.rb:97:in `call'
|
95
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'
|
96
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'
|
97
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'
|
98
|
+
/opt/rubies/ruby-2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
99
|
+
/home/kyrylo/code/airbrake/airbrake/spec/integration/rails/rails_spec.rb:86:in `block (3 levels) in <top (required)>'
|
100
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `instance_exec'
|
101
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `block in run'
|
102
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `block in with_around_and_singleton_context_hooks'
|
103
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `block in with_around_example_hooks'
|
104
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `block in run'
|
105
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:618:in `block in run_around_example_hooks_for'
|
106
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
107
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-wait-0.0.8/lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
108
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
109
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
110
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:389:in `execute_with'
|
111
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:620:in `block (2 levels) in run_around_example_hooks_for'
|
112
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
113
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:621:in `run_around_example_hooks_for'
|
114
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `run'
|
115
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `with_around_example_hooks'
|
116
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `with_around_and_singleton_context_hooks'
|
117
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:233:in `run'
|
118
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:581:in `block in run_examples'
|
119
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `map'
|
120
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `run_examples'
|
121
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:543:in `run'
|
122
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `block in run'
|
123
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `map'
|
124
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `run'
|
125
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (3 levels) in run_specs'
|
126
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `map'
|
127
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (2 levels) in run_specs'
|
128
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/configuration.rb:1680:in `with_suite_hooks'
|
129
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:114:in `block in run_specs'
|
130
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/reporter.rb:77:in `report'
|
131
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:113:in `run_specs'
|
132
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:89:in `run'
|
133
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:73:in `run'
|
134
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:41:in `invoke'
|
135
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/exe/rspec:4:in `<top (required)>'
|
136
|
+
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `load'
|
137
|
+
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `<main>'
|
138
|
+
I, [2016-02-08T16:22:10.603871 #22300] INFO -- : Rendered dummy/active_record_after_rollback.html.erb within layouts/application (6.2ms)
|
139
|
+
I, [2016-02-08T16:22:10.604924 #22300] INFO -- : Completed 200 OK in 150ms (Views: 104.9ms | ActiveRecord: 1.3ms)
|
140
|
+
I, [2016-02-08T16:22:10.612008 #22300] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
141
|
+
I, [2016-02-08T16:22:10.613405 #22300] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
142
|
+
D, [2016-02-08T16:22:10.614171 #22300] DEBUG -- : [1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
143
|
+
D, [2016-02-08T16:22:10.615119 #22300] DEBUG -- : [1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
144
|
+
D, [2016-02-08T16:22:10.615514 #22300] DEBUG -- : [1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
145
|
+
E, [2016-02-08T16:22:10.620808 #22300] ERROR -- : after_commit (AirbrakeTestError)
|
146
|
+
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:48:in `raise_error_after_commit'
|
147
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:375:in `_run__328253211629888034__commit__callbacks'
|
148
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
149
|
+
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rails/active_record.rb:31:in `run_callbacks'
|
150
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:298:in `committed!'
|
151
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:147:in `block in commit_records'
|
152
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:145:in `each'
|
153
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:145:in `commit_records'
|
154
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:181:in `perform_commit'
|
155
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:120:in `commit'
|
156
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:237:in `commit_transaction'
|
157
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `within_new_transaction'
|
158
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `transaction'
|
159
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:209:in `transaction'
|
160
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:327:in `with_transaction_returning_status'
|
161
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:270:in `block in save'
|
162
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:285:in `rollback_active_record_state!'
|
163
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:269:in `save'
|
164
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/persistence.rb:34:in `create'
|
165
|
+
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:116:in `active_record_after_commit'
|
166
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
167
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:189:in `process_action'
|
168
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
169
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
170
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__478450324802621910__process_action__callbacks'
|
171
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
172
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
173
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
174
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
175
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `block in instrument'
|
176
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
177
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `instrument'
|
178
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
179
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
180
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
181
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:136:in `process'
|
182
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/rendering.rb:44:in `process'
|
183
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:195:in `dispatch'
|
184
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
185
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:231:in `block in action'
|
186
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
187
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:50:in `call'
|
188
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
189
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `each'
|
190
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `call'
|
191
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:676:in `call'
|
192
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:35:in `block in call'
|
193
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `catch'
|
194
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `call'
|
195
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/etag.rb:23:in `call'
|
196
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/conditionalget.rb:25:in `call'
|
197
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/head.rb:11:in `call'
|
198
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
199
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
200
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:225:in `context'
|
201
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:220:in `call'
|
202
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
203
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/query_cache.rb:36:in `call'
|
204
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
205
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
206
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__1586469104705807260__call__callbacks'
|
207
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
208
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
209
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
210
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
211
|
+
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rack/middleware.rb:22:in `call'
|
212
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
213
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
214
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:38:in `call_app'
|
215
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:22:in `call'
|
216
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
217
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/methodoverride.rb:21:in `call'
|
218
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/runtime.rb:17:in `call'
|
219
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
220
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/lock.rb:17:in `call'
|
221
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/static.rb:84:in `call'
|
222
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/sendfile.rb:112:in `call'
|
223
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/engine.rb:511:in `call'
|
224
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/application.rb:97:in `call'
|
225
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'
|
226
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'
|
227
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'
|
228
|
+
/opt/rubies/ruby-2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
229
|
+
/home/kyrylo/code/airbrake/airbrake/spec/integration/rails/rails_spec.rb:79:in `block (3 levels) in <top (required)>'
|
230
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `instance_exec'
|
231
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `block in run'
|
232
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `block in with_around_and_singleton_context_hooks'
|
233
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `block in with_around_example_hooks'
|
234
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `block in run'
|
235
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:618:in `block in run_around_example_hooks_for'
|
236
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
237
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-wait-0.0.8/lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
238
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
239
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
240
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:389:in `execute_with'
|
241
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:620:in `block (2 levels) in run_around_example_hooks_for'
|
242
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
243
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:621:in `run_around_example_hooks_for'
|
244
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `run'
|
245
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `with_around_example_hooks'
|
246
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `with_around_and_singleton_context_hooks'
|
247
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:233:in `run'
|
248
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:581:in `block in run_examples'
|
249
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `map'
|
250
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `run_examples'
|
251
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:543:in `run'
|
252
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `block in run'
|
253
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `map'
|
254
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `run'
|
255
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (3 levels) in run_specs'
|
256
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `map'
|
257
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (2 levels) in run_specs'
|
258
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/configuration.rb:1680:in `with_suite_hooks'
|
259
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:114:in `block in run_specs'
|
260
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/reporter.rb:77:in `report'
|
261
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:113:in `run_specs'
|
262
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:89:in `run'
|
263
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:73:in `run'
|
264
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:41:in `invoke'
|
265
|
+
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/exe/rspec:4:in `<top (required)>'
|
266
|
+
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `load'
|
267
|
+
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `<main>'
|
268
|
+
I, [2016-02-08T16:22:10.643446 #22300] INFO -- : Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.4ms)
|
269
|
+
I, [2016-02-08T16:22:10.643898 #22300] INFO -- : Completed 200 OK in 30ms (Views: 1.7ms | ActiveRecord: 0.4ms)
|
270
|
+
I, [2016-02-08T16:22:10.649600 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
271
|
+
I, [2016-02-08T16:22:10.650768 #22300] INFO -- : Processing by DummyController#crash as HTML
|
272
|
+
I, [2016-02-08T16:22:10.651156 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
273
|
+
F, [2016-02-08T16:22:10.655747 #22300] FATAL -- :
|
274
|
+
AirbrakeTestError (AirbrakeTestError):
|
275
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
276
|
+
|
277
|
+
|
278
|
+
I, [2016-02-08T16:22:10.673055 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
279
|
+
I, [2016-02-08T16:22:10.674138 #22300] INFO -- : Processing by DummyController#crash as HTML
|
280
|
+
I, [2016-02-08T16:22:10.674637 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
281
|
+
F, [2016-02-08T16:22:10.679589 #22300] FATAL -- :
|
282
|
+
AirbrakeTestError (AirbrakeTestError):
|
283
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
284
|
+
|
285
|
+
|
286
|
+
I, [2016-02-08T16:22:10.695757 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
287
|
+
I, [2016-02-08T16:22:10.696678 #22300] INFO -- : Processing by DummyController#crash as HTML
|
288
|
+
I, [2016-02-08T16:22:10.697068 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
289
|
+
F, [2016-02-08T16:22:10.701592 #22300] FATAL -- :
|
290
|
+
AirbrakeTestError (AirbrakeTestError):
|
291
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
292
|
+
|
293
|
+
|
294
|
+
I, [2016-02-08T16:22:10.832026 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
295
|
+
I, [2016-02-08T16:22:10.833324 #22300] INFO -- : Processing by DummyController#crash as HTML
|
296
|
+
I, [2016-02-08T16:22:10.833938 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
297
|
+
F, [2016-02-08T16:22:10.858083 #22300] FATAL -- :
|
298
|
+
AirbrakeTestError (AirbrakeTestError):
|
299
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
300
|
+
|
301
|
+
|
302
|
+
I, [2016-02-08T16:22:10.863153 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
303
|
+
I, [2016-02-08T16:22:10.864295 #22300] INFO -- : Processing by DummyController#crash as HTML
|
304
|
+
I, [2016-02-08T16:22:10.864704 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
305
|
+
F, [2016-02-08T16:22:10.870422 #22300] FATAL -- :
|
306
|
+
AirbrakeTestError (AirbrakeTestError):
|
307
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
308
|
+
|
309
|
+
|
310
|
+
I, [2016-02-08T16:22:10.884967 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
311
|
+
I, [2016-02-08T16:22:10.886018 #22300] INFO -- : Processing by DummyController#crash as HTML
|
312
|
+
I, [2016-02-08T16:22:10.886477 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
313
|
+
F, [2016-02-08T16:22:10.893455 #22300] FATAL -- :
|
314
|
+
AirbrakeTestError (AirbrakeTestError):
|
315
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
316
|
+
|
317
|
+
|
318
|
+
I, [2016-02-08T16:22:10.999805 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
319
|
+
I, [2016-02-08T16:22:11.001435 #22300] INFO -- : Processing by DummyController#crash as HTML
|
320
|
+
I, [2016-02-08T16:22:11.001999 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
321
|
+
F, [2016-02-08T16:22:11.024351 #22300] FATAL -- :
|
322
|
+
AirbrakeTestError (AirbrakeTestError):
|
323
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
324
|
+
|
325
|
+
|
326
|
+
I, [2016-02-08T16:22:11.029458 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
327
|
+
I, [2016-02-08T16:22:11.030541 #22300] INFO -- : Processing by DummyController#crash as HTML
|
328
|
+
I, [2016-02-08T16:22:11.030984 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
329
|
+
F, [2016-02-08T16:22:11.036119 #22300] FATAL -- :
|
330
|
+
AirbrakeTestError (AirbrakeTestError):
|
331
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
332
|
+
|
333
|
+
|
334
|
+
I, [2016-02-08T16:22:11.055985 #22300] INFO -- : Started GET "/" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
335
|
+
I, [2016-02-08T16:22:11.057398 #22300] INFO -- : Processing by DummyController#index as HTML
|
336
|
+
I, [2016-02-08T16:22:11.059094 #22300] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
337
|
+
I, [2016-02-08T16:22:11.059621 #22300] INFO -- : Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
338
|
+
I, [2016-02-08T16:22:11.062741 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
339
|
+
I, [2016-02-08T16:22:11.063682 #22300] INFO -- : Processing by DummyController#crash as HTML
|
340
|
+
I, [2016-02-08T16:22:11.063988 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
341
|
+
F, [2016-02-08T16:22:11.069168 #22300] FATAL -- :
|
342
|
+
AirbrakeTestError (AirbrakeTestError):
|
343
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
344
|
+
|
345
|
+
|
346
|
+
I, [2016-02-08T16:22:11.184787 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
347
|
+
I, [2016-02-08T16:22:11.187603 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
348
|
+
I, [2016-02-08T16:22:11.187782 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
349
|
+
I, [2016-02-08T16:22:11.222821 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
350
|
+
I, [2016-02-08T16:22:11.223924 #22300] INFO -- : Completed 200 OK in 36ms (Views: 28.0ms | ActiveRecord: 0.0ms)
|
351
|
+
I, [2016-02-08T16:22:11.234302 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
352
|
+
I, [2016-02-08T16:22:11.235749 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
353
|
+
I, [2016-02-08T16:22:11.235834 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
354
|
+
I, [2016-02-08T16:22:11.244310 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.7ms)
|
355
|
+
I, [2016-02-08T16:22:11.260115 #22300] INFO -- : Completed 200 OK in 24ms (Views: 17.2ms | ActiveRecord: 0.0ms)
|
356
|
+
I, [2016-02-08T16:22:11.265371 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
357
|
+
I, [2016-02-08T16:22:11.266582 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
358
|
+
I, [2016-02-08T16:22:11.266644 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
359
|
+
I, [2016-02-08T16:22:11.273778 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.9ms)
|
360
|
+
I, [2016-02-08T16:22:11.289281 #22300] INFO -- : Completed 200 OK in 23ms (Views: 17.5ms | ActiveRecord: 0.0ms)
|
361
|
+
I, [2016-02-08T16:22:11.294524 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
362
|
+
I, [2016-02-08T16:22:11.295688 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
363
|
+
I, [2016-02-08T16:22:11.295749 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
364
|
+
I, [2016-02-08T16:22:11.321959 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
365
|
+
I, [2016-02-08T16:22:11.322364 #22300] INFO -- : Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
366
|
+
I, [2016-02-08T16:22:11.329365 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
367
|
+
I, [2016-02-08T16:22:11.331036 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
368
|
+
I, [2016-02-08T16:22:11.331129 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
369
|
+
I, [2016-02-08T16:22:11.337407 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
370
|
+
I, [2016-02-08T16:22:11.348193 #22300] INFO -- : Completed 200 OK in 17ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
371
|
+
I, [2016-02-08T16:22:11.353654 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
372
|
+
I, [2016-02-08T16:22:11.354813 #22300] INFO -- : Processing by DummyController#crash as HTML
|
373
|
+
I, [2016-02-08T16:22:11.354883 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
374
|
+
I, [2016-02-08T16:22:11.355233 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
375
|
+
F, [2016-02-08T16:22:11.359603 #22300] FATAL -- :
|
376
|
+
AirbrakeTestError (AirbrakeTestError):
|
377
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
378
|
+
|
379
|
+
|
380
|
+
I, [2016-02-08T16:22:11.465786 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
381
|
+
I, [2016-02-08T16:22:11.467911 #22300] INFO -- : Processing by DummyController#crash as HTML
|
382
|
+
I, [2016-02-08T16:22:11.468089 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
383
|
+
I, [2016-02-08T16:22:11.469004 #22300] INFO -- : Completed 500 Internal Server Error in 1ms
|
384
|
+
F, [2016-02-08T16:22:11.489499 #22300] FATAL -- :
|
385
|
+
AirbrakeTestError (AirbrakeTestError):
|
386
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
387
|
+
|
388
|
+
|
389
|
+
I, [2016-02-08T16:22:11.493316 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
390
|
+
I, [2016-02-08T16:22:11.494303 #22300] INFO -- : Processing by DummyController#crash as HTML
|
391
|
+
I, [2016-02-08T16:22:11.494360 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
392
|
+
I, [2016-02-08T16:22:11.494672 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
393
|
+
F, [2016-02-08T16:22:11.498443 #22300] FATAL -- :
|
394
|
+
AirbrakeTestError (AirbrakeTestError):
|
395
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
396
|
+
|
397
|
+
|
398
|
+
I, [2016-02-08T16:22:11.606916 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
399
|
+
I, [2016-02-08T16:22:11.609423 #22300] INFO -- : Processing by DummyController#crash as HTML
|
400
|
+
I, [2016-02-08T16:22:11.609608 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
401
|
+
I, [2016-02-08T16:22:11.610526 #22300] INFO -- : Completed 500 Internal Server Error in 1ms
|
402
|
+
F, [2016-02-08T16:22:11.629564 #22300] FATAL -- :
|
403
|
+
AirbrakeTestError (AirbrakeTestError):
|
404
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
405
|
+
|
406
|
+
|
407
|
+
I, [2016-02-08T16:22:11.634992 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
408
|
+
I, [2016-02-08T16:22:11.636292 #22300] INFO -- : Processing by DummyController#crash as HTML
|
409
|
+
I, [2016-02-08T16:22:11.636380 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
410
|
+
I, [2016-02-08T16:22:11.636858 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
411
|
+
F, [2016-02-08T16:22:11.643724 #22300] FATAL -- :
|
412
|
+
AirbrakeTestError (AirbrakeTestError):
|
413
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
414
|
+
|
415
|
+
|
416
|
+
I, [2016-02-08T16:22:11.661165 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
417
|
+
I, [2016-02-08T16:22:11.665071 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
418
|
+
I, [2016-02-08T16:22:11.665182 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
419
|
+
I, [2016-02-08T16:22:11.681342 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
420
|
+
I, [2016-02-08T16:22:11.681853 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
421
|
+
I, [2016-02-08T16:22:11.686532 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
422
|
+
I, [2016-02-08T16:22:11.687596 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
423
|
+
I, [2016-02-08T16:22:11.687672 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
424
|
+
I, [2016-02-08T16:22:11.701625 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
425
|
+
I, [2016-02-08T16:22:11.701985 #22300] INFO -- : Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
426
|
+
I, [2016-02-08T16:22:11.706454 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
427
|
+
I, [2016-02-08T16:22:11.707845 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
428
|
+
I, [2016-02-08T16:22:11.707922 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
429
|
+
I, [2016-02-08T16:22:11.723888 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
430
|
+
I, [2016-02-08T16:22:11.724214 #22300] INFO -- : Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
431
|
+
I, [2016-02-08T16:22:11.728508 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
432
|
+
I, [2016-02-08T16:22:11.729481 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
433
|
+
I, [2016-02-08T16:22:11.729539 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
434
|
+
I, [2016-02-08T16:22:11.745749 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
435
|
+
I, [2016-02-08T16:22:11.746174 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
436
|
+
I, [2016-02-08T16:22:11.751319 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
437
|
+
I, [2016-02-08T16:22:11.752341 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
438
|
+
I, [2016-02-08T16:22:11.752403 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
439
|
+
I, [2016-02-08T16:22:11.766467 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
440
|
+
I, [2016-02-08T16:22:11.766832 #22300] INFO -- : Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
441
|
+
I, [2016-02-08T16:22:11.771438 #22300] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
442
|
+
I, [2016-02-08T16:22:11.772526 #22300] INFO -- : Processing by DummyController#resque as HTML
|
443
|
+
I, [2016-02-08T16:22:11.789573 #22300] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.4ms)
|
444
|
+
I, [2016-02-08T16:22:11.789972 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
445
|
+
I, [2016-02-08T16:22:11.801375 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
446
|
+
I, [2016-02-08T16:22:11.802697 #22300] INFO -- : Processing by DummyController#crash as HTML
|
447
|
+
I, [2016-02-08T16:22:11.803059 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
448
|
+
F, [2016-02-08T16:22:11.809247 #22300] FATAL -- :
|
449
|
+
AirbrakeTestError (AirbrakeTestError):
|
450
|
+
lib/airbrake/rack/middleware.rb:22:in `call'
|
451
|
+
|
452
|
+
|