airbrake 8.0.0.rc.6 → 8.0.0.rc.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b60d17b80314f88df8503f5d7ea70a7fd4e0d3c1
4
- data.tar.gz: e02537164654c792b1dde8c91f460a759f789025
3
+ metadata.gz: a6df43ee46ee48e84071bd5d00a1524a4cecef49
4
+ data.tar.gz: 0a3be62e1d62ee3861b126952d8685f3d950a73f
5
5
  SHA512:
6
- metadata.gz: 01f7d69c0d479da227e73941277ca2898302d26e7614aafaade5b43f4adda5eeeb04fd8567856c6baad95f61bc46437c47302f21db5aba55f59d6c00c07d853d
7
- data.tar.gz: e898cab1e52608b09922bd6d4b8878eeae93073a25155135f9ee29950b8566b6539670821ebf9f0b4d44688b12bbab972d7e9416ca67f13990cbef146dc6c3d4
6
+ metadata.gz: 4f3bdf9de8664400c34b2f00a95d6bb7fe1f6a5f94595f5492e4dbf6c32691cf5d7fe76142da96320d5a4bce7c88cc06ce8da81b4a9252108046c57147d41111
7
+ data.tar.gz: d77a88fbcd2249e7b6e36ade013ef35d45bb885a0d7d281f08b85b22afd865deb879fa3b923cb38b8f0d35bc9f5bf7bb1930d69f03d91885d6cbf5ad65d8df58
@@ -109,7 +109,7 @@ module Airbrake
109
109
  @notifier.notify_request(
110
110
  method: payload[:method],
111
111
  route: route,
112
- status_code: payload[:status],
112
+ status_code: find_status_code(payload),
113
113
  start_time: event.time,
114
114
  end_time: Time.new
115
115
  )
@@ -139,6 +139,19 @@ module Airbrake
139
139
  end
140
140
  routes
141
141
  end
142
+
143
+ def find_status_code(payload)
144
+ return payload[:status] if payload[:status]
145
+
146
+ if payload[:exception]
147
+ status = ActionDispatch::ExceptionWrapper.status_code_for_exception(
148
+ payload[:exception].first
149
+ )
150
+ return status
151
+ end
152
+
153
+ 0
154
+ end
142
155
  end
143
156
  end
144
157
  end
@@ -1,5 +1,5 @@
1
1
  # We use Semantic Versioning v2.0.0
2
2
  # More information: http://semver.org/
3
3
  module Airbrake
4
- AIRBRAKE_VERSION = '8.0.0.rc.6'.freeze
4
+ AIRBRAKE_VERSION = '8.0.0.rc.7'.freeze
5
5
  end
@@ -7,3 +7,1413 @@ I, [2018-11-12T22:46:26.563925 #77412] INFO -- : Started GET "/" for 127.0.0.1
7
7
  I, [2018-11-12T22:46:26.565688 #77412] INFO -- : Processing by DummyController#index as HTML
8
8
  I, [2018-11-12T22:46:26.571767 #77412] INFO -- : Rendered dummy/index.html.erb within layouts/application (1.1ms)
9
9
  I, [2018-11-12T22:46:26.572082 #77412] INFO -- : Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
10
+ D, [2018-11-15T01:08:19.556131 #503] DEBUG -- :  (2.0ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
11
+ D, [2018-11-15T01:08:19.559575 #503] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
12
+ D, [2018-11-15T01:08:19.559780 #503] DEBUG -- :  (0.0ms) select sqlite_version(*)
13
+ D, [2018-11-15T01:08:19.560117 #503] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
14
+ I, [2018-11-15T01:08:19.600818 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
15
+ I, [2018-11-15T01:08:19.610657 #503] INFO -- : Processing by DummyController#crash as HTML
16
+ I, [2018-11-15T01:08:19.610729 #503] INFO -- : Parameters: {"foo"=>"bar"}
17
+ I, [2018-11-15T01:08:19.611091 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
18
+ F, [2018-11-15T01:08:19.616870 #503] FATAL -- :
19
+ AirbrakeTestError (AirbrakeTestError):
20
+ lib/airbrake/rack/middleware.rb:54:in `call'
21
+
22
+
23
+ I, [2018-11-15T01:08:19.624280 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
24
+ I, [2018-11-15T01:08:19.624975 #503] INFO -- : Processing by DummyController#crash as HTML
25
+ I, [2018-11-15T01:08:19.625015 #503] INFO -- : Parameters: {"foo"=>"bar"}
26
+ I, [2018-11-15T01:08:19.625273 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
27
+ F, [2018-11-15T01:08:19.630086 #503] FATAL -- :
28
+ AirbrakeTestError (AirbrakeTestError):
29
+ lib/airbrake/rack/middleware.rb:54:in `call'
30
+
31
+
32
+ I, [2018-11-15T01:08:19.635748 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
33
+ I, [2018-11-15T01:08:19.636609 #503] INFO -- : Processing by DummyController#crash as HTML
34
+ I, [2018-11-15T01:08:19.636668 #503] INFO -- : Parameters: {"foo"=>"bar"}
35
+ I, [2018-11-15T01:08:19.637102 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
36
+ F, [2018-11-15T01:08:19.643366 #503] FATAL -- :
37
+ AirbrakeTestError (AirbrakeTestError):
38
+ lib/airbrake/rack/middleware.rb:54:in `call'
39
+
40
+
41
+ I, [2018-11-15T01:08:19.650862 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
42
+ I, [2018-11-15T01:08:19.651937 #503] INFO -- : Processing by DummyController#crash as HTML
43
+ I, [2018-11-15T01:08:19.652058 #503] INFO -- : Parameters: {"foo"=>"bar"}
44
+ I, [2018-11-15T01:08:19.652743 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
45
+ F, [2018-11-15T01:08:19.664129 #503] FATAL -- :
46
+ AirbrakeTestError (AirbrakeTestError):
47
+ lib/airbrake/rack/middleware.rb:54:in `call'
48
+
49
+
50
+ I, [2018-11-15T01:08:19.674707 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
51
+ I, [2018-11-15T01:08:19.675487 #503] INFO -- : Processing by DummyController#crash as HTML
52
+ I, [2018-11-15T01:08:19.675532 #503] INFO -- : Parameters: {"foo"=>"bar"}
53
+ I, [2018-11-15T01:08:19.675838 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
54
+ F, [2018-11-15T01:08:19.680940 #503] FATAL -- :
55
+ AirbrakeTestError (AirbrakeTestError):
56
+ lib/airbrake/rack/middleware.rb:54:in `call'
57
+
58
+
59
+ I, [2018-11-15T01:08:19.799712 #503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
60
+ I, [2018-11-15T01:08:19.800582 #503] INFO -- : Processing by DummyController#crash as HTML
61
+ I, [2018-11-15T01:08:19.800633 #503] INFO -- : Parameters: {"foo"=>"bar"}
62
+ I, [2018-11-15T01:08:19.800956 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
63
+ F, [2018-11-15T01:08:19.810297 #503] FATAL -- :
64
+ AirbrakeTestError (AirbrakeTestError):
65
+ lib/airbrake/rack/middleware.rb:54:in `call'
66
+
67
+
68
+ I, [2018-11-15T01:08:19.812212 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
69
+ I, [2018-11-15T01:08:19.812919 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
70
+ I, [2018-11-15T01:08:19.812956 #503] INFO -- : Parameters: {"foo"=>"bar"}
71
+ I, [2018-11-15T01:08:19.832692 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (1.3ms)
72
+ I, [2018-11-15T01:08:19.833090 #503] INFO -- : Completed 200 OK in 20ms (Views: 10.6ms | ActiveRecord: 0.0ms)
73
+ I, [2018-11-15T01:08:19.836036 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
74
+ I, [2018-11-15T01:08:19.836815 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
75
+ I, [2018-11-15T01:08:19.836858 #503] INFO -- : Parameters: {"foo"=>"bar"}
76
+ I, [2018-11-15T01:08:19.846325 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
77
+ I, [2018-11-15T01:08:19.846593 #503] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
78
+ I, [2018-11-15T01:08:19.849050 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
79
+ I, [2018-11-15T01:08:19.850021 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
80
+ I, [2018-11-15T01:08:19.850096 #503] INFO -- : Parameters: {"foo"=>"bar"}
81
+ I, [2018-11-15T01:08:19.863258 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
82
+ I, [2018-11-15T01:08:19.863550 #503] INFO -- : Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.0ms)
83
+ I, [2018-11-15T01:08:19.865674 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
84
+ I, [2018-11-15T01:08:19.866448 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
85
+ I, [2018-11-15T01:08:19.866496 #503] INFO -- : Parameters: {"foo"=>"bar"}
86
+ I, [2018-11-15T01:08:19.875719 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
87
+ I, [2018-11-15T01:08:19.875942 #503] INFO -- : Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.0ms)
88
+ I, [2018-11-15T01:08:19.877759 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
89
+ I, [2018-11-15T01:08:19.878264 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
90
+ I, [2018-11-15T01:08:19.878301 #503] INFO -- : Parameters: {"foo"=>"bar"}
91
+ I, [2018-11-15T01:08:19.887719 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
92
+ I, [2018-11-15T01:08:19.887982 #503] INFO -- : Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms)
93
+ I, [2018-11-15T01:08:19.889854 #503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
94
+ I, [2018-11-15T01:08:19.890398 #503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
95
+ I, [2018-11-15T01:08:19.890438 #503] INFO -- : Parameters: {"foo"=>"bar"}
96
+ I, [2018-11-15T01:08:19.899270 #503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
97
+ I, [2018-11-15T01:08:19.899549 #503] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
98
+ I, [2018-11-15T01:08:19.901925 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
99
+ I, [2018-11-15T01:08:19.902498 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
100
+ I, [2018-11-15T01:08:19.902548 #503] INFO -- : Parameters: {"foo"=>"bar"}
101
+ I, [2018-11-15T01:08:19.912231 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.1ms)
102
+ I, [2018-11-15T01:08:19.912531 #503] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
103
+ I, [2018-11-15T01:08:19.914487 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
104
+ I, [2018-11-15T01:08:19.915123 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
105
+ I, [2018-11-15T01:08:19.915166 #503] INFO -- : Parameters: {"foo"=>"bar"}
106
+ I, [2018-11-15T01:08:19.919886 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
107
+ I, [2018-11-15T01:08:19.920354 #503] INFO -- : Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
108
+ I, [2018-11-15T01:08:19.928129 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
109
+ I, [2018-11-15T01:08:19.928715 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
110
+ I, [2018-11-15T01:08:19.928756 #503] INFO -- : Parameters: {"foo"=>"bar"}
111
+ I, [2018-11-15T01:08:19.933541 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
112
+ I, [2018-11-15T01:08:19.938169 #503] INFO -- : Completed 200 OK in 9ms (Views: 5.1ms | ActiveRecord: 0.0ms)
113
+ I, [2018-11-15T01:08:19.940175 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:19 +0800
114
+ I, [2018-11-15T01:08:19.940717 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
115
+ I, [2018-11-15T01:08:19.940757 #503] INFO -- : Parameters: {"foo"=>"bar"}
116
+ I, [2018-11-15T01:08:19.945345 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.1ms)
117
+ I, [2018-11-15T01:08:19.945579 #503] INFO -- : Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
118
+ I, [2018-11-15T01:08:20.053730 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
119
+ I, [2018-11-15T01:08:20.054885 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
120
+ I, [2018-11-15T01:08:20.054940 #503] INFO -- : Parameters: {"foo"=>"bar"}
121
+ I, [2018-11-15T01:08:20.066584 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
122
+ I, [2018-11-15T01:08:20.066923 #503] INFO -- : Completed 200 OK in 12ms (Views: 6.0ms | ActiveRecord: 0.0ms)
123
+ I, [2018-11-15T01:08:20.069632 #503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
124
+ I, [2018-11-15T01:08:20.070906 #503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
125
+ I, [2018-11-15T01:08:20.070968 #503] INFO -- : Parameters: {"foo"=>"bar"}
126
+ I, [2018-11-15T01:08:20.075589 #503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
127
+ I, [2018-11-15T01:08:20.075834 #503] INFO -- : Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
128
+ I, [2018-11-15T01:08:20.082576 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
129
+ I, [2018-11-15T01:08:20.083225 #503] INFO -- : Processing by DummyController#crash as HTML
130
+ I, [2018-11-15T01:08:20.083494 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
131
+ F, [2018-11-15T01:08:20.089216 #503] FATAL -- :
132
+ AirbrakeTestError (AirbrakeTestError):
133
+ lib/airbrake/rack/middleware.rb:54:in `call'
134
+
135
+
136
+ I, [2018-11-15T01:08:20.096304 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
137
+ I, [2018-11-15T01:08:20.097075 #503] INFO -- : Processing by DummyController#crash as HTML
138
+ I, [2018-11-15T01:08:20.097365 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
139
+ F, [2018-11-15T01:08:20.102642 #503] FATAL -- :
140
+ AirbrakeTestError (AirbrakeTestError):
141
+ lib/airbrake/rack/middleware.rb:54:in `call'
142
+
143
+
144
+ I, [2018-11-15T01:08:20.110949 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
145
+ I, [2018-11-15T01:08:20.111401 #503] INFO -- : Processing by DummyController#crash as HTML
146
+ I, [2018-11-15T01:08:20.111623 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
147
+ F, [2018-11-15T01:08:20.116633 #503] FATAL -- :
148
+ AirbrakeTestError (AirbrakeTestError):
149
+ lib/airbrake/rack/middleware.rb:54:in `call'
150
+
151
+
152
+ I, [2018-11-15T01:08:20.123029 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
153
+ I, [2018-11-15T01:08:20.123496 #503] INFO -- : Processing by DummyController#crash as HTML
154
+ I, [2018-11-15T01:08:20.123794 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
155
+ F, [2018-11-15T01:08:20.128372 #503] FATAL -- :
156
+ AirbrakeTestError (AirbrakeTestError):
157
+ lib/airbrake/rack/middleware.rb:54:in `call'
158
+
159
+
160
+ I, [2018-11-15T01:08:20.134438 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
161
+ I, [2018-11-15T01:08:20.134969 #503] INFO -- : Processing by DummyController#crash as HTML
162
+ I, [2018-11-15T01:08:20.135221 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
163
+ F, [2018-11-15T01:08:20.140113 #503] FATAL -- :
164
+ AirbrakeTestError (AirbrakeTestError):
165
+ lib/airbrake/rack/middleware.rb:54:in `call'
166
+
167
+
168
+ I, [2018-11-15T01:08:20.145527 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
169
+ I, [2018-11-15T01:08:20.145948 #503] INFO -- : Processing by DummyController#crash as HTML
170
+ I, [2018-11-15T01:08:20.146233 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
171
+ F, [2018-11-15T01:08:20.151051 #503] FATAL -- :
172
+ AirbrakeTestError (AirbrakeTestError):
173
+ lib/airbrake/rack/middleware.rb:54:in `call'
174
+
175
+
176
+ I, [2018-11-15T01:08:20.257946 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
177
+ I, [2018-11-15T01:08:20.258730 #503] INFO -- : Processing by DummyController#crash as HTML
178
+ I, [2018-11-15T01:08:20.259054 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
179
+ F, [2018-11-15T01:08:20.270305 #503] FATAL -- :
180
+ AirbrakeTestError (AirbrakeTestError):
181
+ lib/airbrake/rack/middleware.rb:54:in `call'
182
+
183
+
184
+ I, [2018-11-15T01:08:20.272595 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
185
+ I, [2018-11-15T01:08:20.273260 #503] INFO -- : Processing by DummyController#crash as HTML
186
+ I, [2018-11-15T01:08:20.273568 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
187
+ F, [2018-11-15T01:08:20.278461 #503] FATAL -- :
188
+ AirbrakeTestError (AirbrakeTestError):
189
+ lib/airbrake/rack/middleware.rb:54:in `call'
190
+
191
+
192
+ I, [2018-11-15T01:08:20.383461 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
193
+ I, [2018-11-15T01:08:20.384523 #503] INFO -- : Processing by DummyController#crash as HTML
194
+ I, [2018-11-15T01:08:20.384853 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
195
+ F, [2018-11-15T01:08:20.393915 #503] FATAL -- :
196
+ AirbrakeTestError (AirbrakeTestError):
197
+ lib/airbrake/rack/middleware.rb:54:in `call'
198
+
199
+
200
+ I, [2018-11-15T01:08:20.395992 #503] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
201
+ I, [2018-11-15T01:08:20.396561 #503] INFO -- : Processing by DummyController#active_record_after_commit as HTML
202
+ D, [2018-11-15T01:08:20.403032 #503] DEBUG -- :  (0.1ms) begin transaction
203
+ D, [2018-11-15T01:08:20.405963 #503] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
204
+ D, [2018-11-15T01:08:20.406190 #503] DEBUG -- :  (0.0ms) commit transaction
205
+ I, [2018-11-15T01:08:20.406516 #503] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.4ms)
206
+ F, [2018-11-15T01:08:20.411577 #503] FATAL -- :
207
+ AirbrakeTestError (after_commit):
208
+ lib/airbrake/rack/middleware.rb:54:in `call'
209
+
210
+
211
+ I, [2018-11-15T01:08:20.516351 #503] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
212
+ I, [2018-11-15T01:08:20.517436 #503] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
213
+ D, [2018-11-15T01:08:20.517730 #503] DEBUG -- :  (0.1ms) begin transaction
214
+ D, [2018-11-15T01:08:20.518396 #503] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
215
+ D, [2018-11-15T01:08:20.518659 #503] DEBUG -- :  (0.0ms) rollback transaction
216
+ I, [2018-11-15T01:08:20.519075 #503] INFO -- : Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
217
+ F, [2018-11-15T01:08:20.536761 #503] FATAL -- :
218
+ AirbrakeTestError (after_rollback):
219
+ lib/airbrake/rack/middleware.rb:54:in `call'
220
+
221
+
222
+ I, [2018-11-15T01:08:20.539076 #503] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
223
+ I, [2018-11-15T01:08:20.539757 #503] INFO -- : Processing by DummyController#resque as HTML
224
+ I, [2018-11-15T01:08:20.541322 #503] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
225
+ I, [2018-11-15T01:08:20.541568 #503] INFO -- : Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
226
+ I, [2018-11-15T01:08:20.543106 #503] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
227
+ I, [2018-11-15T01:08:20.543468 #503] INFO -- : Processing by DummyController#resque as HTML
228
+ I, [2018-11-15T01:08:20.553963 #503] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
229
+ I, [2018-11-15T01:08:20.554289 #503] INFO -- : Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.0ms)
230
+ I, [2018-11-15T01:08:20.558467 #503] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:08:20 +0800
231
+ I, [2018-11-15T01:08:20.559013 #503] INFO -- : Processing by DummyController#active_job as HTML
232
+ I, [2018-11-15T01:08:20.572782 #503] INFO -- : Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
233
+ F, [2018-11-15T01:08:20.584576 #503] FATAL -- :
234
+ AirbrakeTestError (active_job error):
235
+ lib/airbrake/rack/middleware.rb:54:in `call'
236
+
237
+
238
+ I, [2018-11-15T01:08:22.597051 #503] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:08:22 +0800
239
+ I, [2018-11-15T01:08:22.598037 #503] INFO -- : Processing by DummyController#active_job as HTML
240
+ I, [2018-11-15T01:08:22.606883 #503] INFO -- : Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
241
+ F, [2018-11-15T01:08:22.619732 #503] FATAL -- :
242
+ AirbrakeTestError (active_job error):
243
+ lib/airbrake/rack/middleware.rb:54:in `call'
244
+
245
+
246
+ I, [2018-11-15T01:08:24.634340 #503] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:08:24 +0800
247
+ I, [2018-11-15T01:08:24.635167 #503] INFO -- : Processing by DummyController#active_job as HTML
248
+ I, [2018-11-15T01:08:24.636066 #503] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
249
+ F, [2018-11-15T01:08:24.637806 #503] FATAL -- :
250
+ AirbrakeTestError (active_job error):
251
+ lib/airbrake/rack/middleware.rb:54:in `call'
252
+
253
+
254
+ I, [2018-11-15T01:08:26.645025 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:26 +0800
255
+ I, [2018-11-15T01:08:26.646043 #503] INFO -- : Processing by DummyController#crash as HTML
256
+ I, [2018-11-15T01:08:26.646576 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
257
+ F, [2018-11-15T01:08:26.660162 #503] FATAL -- :
258
+ AirbrakeTestError (AirbrakeTestError):
259
+ lib/airbrake/rack/middleware.rb:54:in `call'
260
+
261
+
262
+ I, [2018-11-15T01:08:26.662419 #503] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-15 01:08:26 +0800
263
+ I, [2018-11-15T01:08:26.663125 #503] INFO -- : Processing by DummyController#index as HTML
264
+ I, [2018-11-15T01:08:26.664087 #503] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
265
+ I, [2018-11-15T01:08:26.664399 #503] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
266
+ I, [2018-11-15T01:08:26.666025 #503] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:08:26 +0800
267
+ I, [2018-11-15T01:08:26.666557 #503] INFO -- : Processing by DummyController#delayed_job as HTML
268
+ I, [2018-11-15T01:08:26.677634 #503] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms)
269
+ F, [2018-11-15T01:08:26.687589 #503] FATAL -- :
270
+ AirbrakeTestError (delayed_job error):
271
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
272
+ lib/airbrake/rack/middleware.rb:54:in `call'
273
+
274
+
275
+ I, [2018-11-15T01:08:30.702189 #503] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:08:30 +0800
276
+ I, [2018-11-15T01:08:30.703056 #503] INFO -- : Processing by DummyController#delayed_job as HTML
277
+ I, [2018-11-15T01:08:30.704345 #503] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
278
+ F, [2018-11-15T01:08:30.705855 #503] FATAL -- :
279
+ AirbrakeTestError (delayed_job error):
280
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
281
+ lib/airbrake/rack/middleware.rb:54:in `call'
282
+
283
+
284
+ I, [2018-11-15T01:08:32.714265 #503] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:08:32 +0800
285
+ I, [2018-11-15T01:08:32.715139 #503] INFO -- : Processing by DummyController#crash as HTML
286
+ I, [2018-11-15T01:08:32.715463 #503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
287
+ F, [2018-11-15T01:08:32.721483 #503] FATAL -- :
288
+ AirbrakeTestError (AirbrakeTestError):
289
+ lib/airbrake/rack/middleware.rb:54:in `call'
290
+
291
+
292
+ D, [2018-11-15T01:09:19.311194 #525] DEBUG -- :  (0.5ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
293
+ D, [2018-11-15T01:09:19.313652 #525] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
294
+ D, [2018-11-15T01:09:19.313871 #525] DEBUG -- :  (0.0ms) select sqlite_version(*)
295
+ D, [2018-11-15T01:09:19.314175 #525] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
296
+ I, [2018-11-15T01:09:19.347636 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:19 +0800
297
+ I, [2018-11-15T01:09:19.349421 #525] INFO -- : Processing by DummyController#crash as HTML
298
+ I, [2018-11-15T01:09:19.349729 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
299
+ F, [2018-11-15T01:09:19.365144 #525] FATAL -- :
300
+ AirbrakeTestError (AirbrakeTestError):
301
+ lib/airbrake/rack/middleware.rb:54:in `call'
302
+
303
+
304
+ I, [2018-11-15T01:09:21.378221 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
305
+ I, [2018-11-15T01:09:21.379208 #525] INFO -- : Processing by DummyController#crash as HTML
306
+ I, [2018-11-15T01:09:21.379266 #525] INFO -- : Parameters: {"foo"=>"bar"}
307
+ I, [2018-11-15T01:09:21.379654 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
308
+ F, [2018-11-15T01:09:21.386049 #525] FATAL -- :
309
+ AirbrakeTestError (AirbrakeTestError):
310
+ lib/airbrake/rack/middleware.rb:54:in `call'
311
+
312
+
313
+ I, [2018-11-15T01:09:21.392271 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
314
+ I, [2018-11-15T01:09:21.393103 #525] INFO -- : Processing by DummyController#crash as HTML
315
+ I, [2018-11-15T01:09:21.393155 #525] INFO -- : Parameters: {"foo"=>"bar"}
316
+ I, [2018-11-15T01:09:21.393449 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
317
+ F, [2018-11-15T01:09:21.399244 #525] FATAL -- :
318
+ AirbrakeTestError (AirbrakeTestError):
319
+ lib/airbrake/rack/middleware.rb:54:in `call'
320
+
321
+
322
+ I, [2018-11-15T01:09:21.409179 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
323
+ I, [2018-11-15T01:09:21.409947 #525] INFO -- : Processing by DummyController#crash as HTML
324
+ I, [2018-11-15T01:09:21.409987 #525] INFO -- : Parameters: {"foo"=>"bar"}
325
+ I, [2018-11-15T01:09:21.410235 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
326
+ F, [2018-11-15T01:09:21.415720 #525] FATAL -- :
327
+ AirbrakeTestError (AirbrakeTestError):
328
+ lib/airbrake/rack/middleware.rb:54:in `call'
329
+
330
+
331
+ I, [2018-11-15T01:09:21.421352 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
332
+ I, [2018-11-15T01:09:21.422075 #525] INFO -- : Processing by DummyController#crash as HTML
333
+ I, [2018-11-15T01:09:21.422113 #525] INFO -- : Parameters: {"foo"=>"bar"}
334
+ I, [2018-11-15T01:09:21.422363 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
335
+ F, [2018-11-15T01:09:21.427920 #525] FATAL -- :
336
+ AirbrakeTestError (AirbrakeTestError):
337
+ lib/airbrake/rack/middleware.rb:54:in `call'
338
+
339
+
340
+ I, [2018-11-15T01:09:21.434403 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
341
+ I, [2018-11-15T01:09:21.435106 #525] INFO -- : Processing by DummyController#crash as HTML
342
+ I, [2018-11-15T01:09:21.435145 #525] INFO -- : Parameters: {"foo"=>"bar"}
343
+ I, [2018-11-15T01:09:21.435405 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
344
+ F, [2018-11-15T01:09:21.440496 #525] FATAL -- :
345
+ AirbrakeTestError (AirbrakeTestError):
346
+ lib/airbrake/rack/middleware.rb:54:in `call'
347
+
348
+
349
+ I, [2018-11-15T01:09:21.559394 #525] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
350
+ I, [2018-11-15T01:09:21.560635 #525] INFO -- : Processing by DummyController#crash as HTML
351
+ I, [2018-11-15T01:09:21.560689 #525] INFO -- : Parameters: {"foo"=>"bar"}
352
+ I, [2018-11-15T01:09:21.561058 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
353
+ F, [2018-11-15T01:09:21.571968 #525] FATAL -- :
354
+ AirbrakeTestError (AirbrakeTestError):
355
+ lib/airbrake/rack/middleware.rb:54:in `call'
356
+
357
+
358
+ I, [2018-11-15T01:09:21.574034 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
359
+ I, [2018-11-15T01:09:21.574823 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
360
+ I, [2018-11-15T01:09:21.574869 #525] INFO -- : Parameters: {"foo"=>"bar"}
361
+ I, [2018-11-15T01:09:21.584400 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.8ms)
362
+ I, [2018-11-15T01:09:21.588949 #525] INFO -- : Completed 200 OK in 14ms (Views: 9.5ms | ActiveRecord: 0.0ms)
363
+ I, [2018-11-15T01:09:21.591469 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
364
+ I, [2018-11-15T01:09:21.592242 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
365
+ I, [2018-11-15T01:09:21.592293 #525] INFO -- : Parameters: {"foo"=>"bar"}
366
+ I, [2018-11-15T01:09:21.600186 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
367
+ I, [2018-11-15T01:09:21.605079 #525] INFO -- : Completed 200 OK in 13ms (Views: 5.4ms | ActiveRecord: 0.0ms)
368
+ I, [2018-11-15T01:09:21.607703 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
369
+ I, [2018-11-15T01:09:21.608517 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
370
+ I, [2018-11-15T01:09:21.608574 #525] INFO -- : Parameters: {"foo"=>"bar"}
371
+ I, [2018-11-15T01:09:21.613930 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
372
+ I, [2018-11-15T01:09:21.618467 #525] INFO -- : Completed 200 OK in 10ms (Views: 5.2ms | ActiveRecord: 0.0ms)
373
+ I, [2018-11-15T01:09:21.620474 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
374
+ I, [2018-11-15T01:09:21.621101 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
375
+ I, [2018-11-15T01:09:21.621138 #525] INFO -- : Parameters: {"foo"=>"bar"}
376
+ I, [2018-11-15T01:09:21.626026 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
377
+ I, [2018-11-15T01:09:21.630592 #525] INFO -- : Completed 200 OK in 9ms (Views: 5.2ms | ActiveRecord: 0.0ms)
378
+ I, [2018-11-15T01:09:21.632911 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
379
+ I, [2018-11-15T01:09:21.633686 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
380
+ I, [2018-11-15T01:09:21.633727 #525] INFO -- : Parameters: {"foo"=>"bar"}
381
+ I, [2018-11-15T01:09:21.638715 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
382
+ I, [2018-11-15T01:09:21.638986 #525] INFO -- : Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
383
+ I, [2018-11-15T01:09:21.745352 #525] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
384
+ I, [2018-11-15T01:09:21.746598 #525] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
385
+ I, [2018-11-15T01:09:21.746682 #525] INFO -- : Parameters: {"foo"=>"bar"}
386
+ I, [2018-11-15T01:09:21.759412 #525] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
387
+ I, [2018-11-15T01:09:21.759752 #525] INFO -- : Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.0ms)
388
+ I, [2018-11-15T01:09:21.762534 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
389
+ I, [2018-11-15T01:09:21.763307 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
390
+ I, [2018-11-15T01:09:21.763346 #525] INFO -- : Parameters: {"foo"=>"bar"}
391
+ I, [2018-11-15T01:09:21.772266 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
392
+ I, [2018-11-15T01:09:21.772564 #525] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
393
+ I, [2018-11-15T01:09:21.777046 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
394
+ I, [2018-11-15T01:09:21.777998 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
395
+ I, [2018-11-15T01:09:21.778065 #525] INFO -- : Parameters: {"foo"=>"bar"}
396
+ I, [2018-11-15T01:09:21.786500 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
397
+ I, [2018-11-15T01:09:21.786781 #525] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
398
+ I, [2018-11-15T01:09:21.789089 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
399
+ I, [2018-11-15T01:09:21.789744 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
400
+ I, [2018-11-15T01:09:21.789781 #525] INFO -- : Parameters: {"foo"=>"bar"}
401
+ I, [2018-11-15T01:09:21.798863 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
402
+ I, [2018-11-15T01:09:21.799150 #525] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
403
+ I, [2018-11-15T01:09:21.801623 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
404
+ I, [2018-11-15T01:09:21.802311 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
405
+ I, [2018-11-15T01:09:21.802350 #525] INFO -- : Parameters: {"foo"=>"bar"}
406
+ I, [2018-11-15T01:09:21.811361 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
407
+ I, [2018-11-15T01:09:21.811828 #525] INFO -- : Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
408
+ I, [2018-11-15T01:09:21.814863 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
409
+ I, [2018-11-15T01:09:21.815622 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
410
+ I, [2018-11-15T01:09:21.815663 #525] INFO -- : Parameters: {"foo"=>"bar"}
411
+ I, [2018-11-15T01:09:21.824657 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
412
+ I, [2018-11-15T01:09:21.824955 #525] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
413
+ I, [2018-11-15T01:09:21.827003 #525] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
414
+ I, [2018-11-15T01:09:21.827568 #525] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
415
+ I, [2018-11-15T01:09:21.827612 #525] INFO -- : Parameters: {"foo"=>"bar"}
416
+ I, [2018-11-15T01:09:21.837520 #525] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
417
+ I, [2018-11-15T01:09:21.837821 #525] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
418
+ I, [2018-11-15T01:09:21.840984 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
419
+ I, [2018-11-15T01:09:21.841795 #525] INFO -- : Processing by DummyController#crash as HTML
420
+ I, [2018-11-15T01:09:21.842095 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
421
+ F, [2018-11-15T01:09:21.847476 #525] FATAL -- :
422
+ AirbrakeTestError (AirbrakeTestError):
423
+ lib/airbrake/rack/middleware.rb:54:in `call'
424
+
425
+
426
+ I, [2018-11-15T01:09:21.855504 #525] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
427
+ I, [2018-11-15T01:09:21.856145 #525] INFO -- : Processing by DummyController#resque as HTML
428
+ I, [2018-11-15T01:09:21.857715 #525] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
429
+ I, [2018-11-15T01:09:21.857980 #525] INFO -- : Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
430
+ I, [2018-11-15T01:09:21.859256 #525] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
431
+ I, [2018-11-15T01:09:21.859654 #525] INFO -- : Processing by DummyController#resque as HTML
432
+ I, [2018-11-15T01:09:21.869101 #525] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
433
+ I, [2018-11-15T01:09:21.869416 #525] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
434
+ I, [2018-11-15T01:09:21.871608 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
435
+ I, [2018-11-15T01:09:21.872151 #525] INFO -- : Processing by DummyController#crash as HTML
436
+ I, [2018-11-15T01:09:21.872422 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
437
+ F, [2018-11-15T01:09:21.877012 #525] FATAL -- :
438
+ AirbrakeTestError (AirbrakeTestError):
439
+ lib/airbrake/rack/middleware.rb:54:in `call'
440
+
441
+
442
+ I, [2018-11-15T01:09:21.980704 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
443
+ I, [2018-11-15T01:09:21.981660 #525] INFO -- : Processing by DummyController#crash as HTML
444
+ I, [2018-11-15T01:09:21.982022 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
445
+ F, [2018-11-15T01:09:21.993045 #525] FATAL -- :
446
+ AirbrakeTestError (AirbrakeTestError):
447
+ lib/airbrake/rack/middleware.rb:54:in `call'
448
+
449
+
450
+ I, [2018-11-15T01:09:21.995541 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:21 +0800
451
+ I, [2018-11-15T01:09:21.996161 #525] INFO -- : Processing by DummyController#crash as HTML
452
+ I, [2018-11-15T01:09:21.996425 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
453
+ F, [2018-11-15T01:09:22.000927 #525] FATAL -- :
454
+ AirbrakeTestError (AirbrakeTestError):
455
+ lib/airbrake/rack/middleware.rb:54:in `call'
456
+
457
+
458
+ I, [2018-11-15T01:09:22.108322 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
459
+ I, [2018-11-15T01:09:22.109127 #525] INFO -- : Processing by DummyController#crash as HTML
460
+ I, [2018-11-15T01:09:22.109659 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
461
+ F, [2018-11-15T01:09:22.121776 #525] FATAL -- :
462
+ AirbrakeTestError (AirbrakeTestError):
463
+ lib/airbrake/rack/middleware.rb:54:in `call'
464
+
465
+
466
+ I, [2018-11-15T01:09:22.123457 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
467
+ I, [2018-11-15T01:09:22.123943 #525] INFO -- : Processing by DummyController#crash as HTML
468
+ I, [2018-11-15T01:09:22.124231 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
469
+ F, [2018-11-15T01:09:22.132555 #525] FATAL -- :
470
+ AirbrakeTestError (AirbrakeTestError):
471
+ lib/airbrake/rack/middleware.rb:54:in `call'
472
+
473
+
474
+ I, [2018-11-15T01:09:22.138384 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
475
+ I, [2018-11-15T01:09:22.138882 #525] INFO -- : Processing by DummyController#crash as HTML
476
+ I, [2018-11-15T01:09:22.139182 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
477
+ F, [2018-11-15T01:09:22.144611 #525] FATAL -- :
478
+ AirbrakeTestError (AirbrakeTestError):
479
+ lib/airbrake/rack/middleware.rb:54:in `call'
480
+
481
+
482
+ I, [2018-11-15T01:09:22.150579 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
483
+ I, [2018-11-15T01:09:22.151141 #525] INFO -- : Processing by DummyController#crash as HTML
484
+ I, [2018-11-15T01:09:22.151410 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
485
+ F, [2018-11-15T01:09:22.156185 #525] FATAL -- :
486
+ AirbrakeTestError (AirbrakeTestError):
487
+ lib/airbrake/rack/middleware.rb:54:in `call'
488
+
489
+
490
+ I, [2018-11-15T01:09:22.162631 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
491
+ I, [2018-11-15T01:09:22.163223 #525] INFO -- : Processing by DummyController#crash as HTML
492
+ I, [2018-11-15T01:09:22.163479 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
493
+ F, [2018-11-15T01:09:22.168603 #525] FATAL -- :
494
+ AirbrakeTestError (AirbrakeTestError):
495
+ lib/airbrake/rack/middleware.rb:54:in `call'
496
+
497
+
498
+ I, [2018-11-15T01:09:22.276342 #525] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
499
+ I, [2018-11-15T01:09:22.277216 #525] INFO -- : Processing by DummyController#active_record_after_commit as HTML
500
+ D, [2018-11-15T01:09:22.282701 #525] DEBUG -- :  (0.0ms) begin transaction
501
+ D, [2018-11-15T01:09:22.284806 #525] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
502
+ D, [2018-11-15T01:09:22.285045 #525] DEBUG -- :  (0.0ms) commit transaction
503
+ I, [2018-11-15T01:09:22.285389 #525] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.8ms)
504
+ F, [2018-11-15T01:09:22.295653 #525] FATAL -- :
505
+ AirbrakeTestError (after_commit):
506
+ lib/airbrake/rack/middleware.rb:54:in `call'
507
+
508
+
509
+ I, [2018-11-15T01:09:22.297626 #525] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
510
+ I, [2018-11-15T01:09:22.298281 #525] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
511
+ D, [2018-11-15T01:09:22.298483 #525] DEBUG -- :  (0.0ms) begin transaction
512
+ D, [2018-11-15T01:09:22.299003 #525] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
513
+ D, [2018-11-15T01:09:22.299196 #525] DEBUG -- :  (0.0ms) rollback transaction
514
+ I, [2018-11-15T01:09:22.299519 #525] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
515
+ F, [2018-11-15T01:09:22.311779 #525] FATAL -- :
516
+ AirbrakeTestError (after_rollback):
517
+ lib/airbrake/rack/middleware.rb:54:in `call'
518
+
519
+
520
+ I, [2018-11-15T01:09:22.321749 #525] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:09:22 +0800
521
+ I, [2018-11-15T01:09:22.322437 #525] INFO -- : Processing by DummyController#delayed_job as HTML
522
+ I, [2018-11-15T01:09:22.335403 #525] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms)
523
+ F, [2018-11-15T01:09:22.344491 #525] FATAL -- :
524
+ AirbrakeTestError (delayed_job error):
525
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
526
+ lib/airbrake/rack/middleware.rb:54:in `call'
527
+
528
+
529
+ I, [2018-11-15T01:09:26.358717 #525] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:09:26 +0800
530
+ I, [2018-11-15T01:09:26.359869 #525] INFO -- : Processing by DummyController#delayed_job as HTML
531
+ I, [2018-11-15T01:09:26.361316 #525] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
532
+ F, [2018-11-15T01:09:26.363179 #525] FATAL -- :
533
+ AirbrakeTestError (delayed_job error):
534
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
535
+ lib/airbrake/rack/middleware.rb:54:in `call'
536
+
537
+
538
+ I, [2018-11-15T01:09:28.369969 #525] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:09:28 +0800
539
+ I, [2018-11-15T01:09:28.370943 #525] INFO -- : Processing by DummyController#active_job as HTML
540
+ I, [2018-11-15T01:09:28.384443 #525] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
541
+ F, [2018-11-15T01:09:28.397830 #525] FATAL -- :
542
+ AirbrakeTestError (active_job error):
543
+ lib/airbrake/rack/middleware.rb:54:in `call'
544
+
545
+
546
+ I, [2018-11-15T01:09:30.409867 #525] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:09:30 +0800
547
+ I, [2018-11-15T01:09:30.410567 #525] INFO -- : Processing by DummyController#active_job as HTML
548
+ I, [2018-11-15T01:09:30.419773 #525] INFO -- : Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
549
+ F, [2018-11-15T01:09:30.433692 #525] FATAL -- :
550
+ AirbrakeTestError (active_job error):
551
+ lib/airbrake/rack/middleware.rb:54:in `call'
552
+
553
+
554
+ I, [2018-11-15T01:09:32.444473 #525] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:09:32 +0800
555
+ I, [2018-11-15T01:09:32.445228 #525] INFO -- : Processing by DummyController#active_job as HTML
556
+ I, [2018-11-15T01:09:32.446064 #525] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
557
+ F, [2018-11-15T01:09:32.447665 #525] FATAL -- :
558
+ AirbrakeTestError (active_job error):
559
+ lib/airbrake/rack/middleware.rb:54:in `call'
560
+
561
+
562
+ I, [2018-11-15T01:09:34.452104 #525] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-15 01:09:34 +0800
563
+ I, [2018-11-15T01:09:34.453120 #525] INFO -- : Processing by DummyController#index as HTML
564
+ I, [2018-11-15T01:09:34.454209 #525] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
565
+ I, [2018-11-15T01:09:34.454550 #525] INFO -- : Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
566
+ I, [2018-11-15T01:09:34.456191 #525] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:09:34 +0800
567
+ I, [2018-11-15T01:09:34.456714 #525] INFO -- : Processing by DummyController#crash as HTML
568
+ I, [2018-11-15T01:09:34.457038 #525] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
569
+ F, [2018-11-15T01:09:34.467079 #525] FATAL -- :
570
+ AirbrakeTestError (AirbrakeTestError):
571
+ lib/airbrake/rack/middleware.rb:54:in `call'
572
+
573
+
574
+ D, [2018-11-15T01:10:46.554130 #551] DEBUG -- :  (0.5ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
575
+ D, [2018-11-15T01:10:46.556866 #551] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
576
+ D, [2018-11-15T01:10:46.557074 #551] DEBUG -- :  (0.0ms) select sqlite_version(*)
577
+ D, [2018-11-15T01:10:46.557372 #551] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
578
+ I, [2018-11-15T01:10:46.591439 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:46 +0800
579
+ I, [2018-11-15T01:10:46.593352 #551] INFO -- : Processing by DummyController#crash as HTML
580
+ I, [2018-11-15T01:10:46.593700 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
581
+ F, [2018-11-15T01:10:46.607012 #551] FATAL -- :
582
+ AirbrakeTestError (AirbrakeTestError):
583
+ lib/airbrake/rack/middleware.rb:54:in `call'
584
+
585
+
586
+ I, [2018-11-15T01:10:51.624917 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
587
+ I, [2018-11-15T01:10:51.626024 #551] INFO -- : Processing by DummyController#crash as HTML
588
+ I, [2018-11-15T01:10:51.626695 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
589
+ F, [2018-11-15T01:10:51.641357 #551] FATAL -- :
590
+ AirbrakeTestError (AirbrakeTestError):
591
+ lib/airbrake/rack/middleware.rb:54:in `call'
592
+
593
+
594
+ I, [2018-11-15T01:10:51.643204 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
595
+ I, [2018-11-15T01:10:51.643762 #551] INFO -- : Processing by DummyController#crash as HTML
596
+ I, [2018-11-15T01:10:51.644052 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
597
+ F, [2018-11-15T01:10:51.649480 #551] FATAL -- :
598
+ AirbrakeTestError (AirbrakeTestError):
599
+ lib/airbrake/rack/middleware.rb:54:in `call'
600
+
601
+
602
+ I, [2018-11-15T01:10:51.655970 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
603
+ I, [2018-11-15T01:10:51.656586 #551] INFO -- : Processing by DummyController#crash as HTML
604
+ I, [2018-11-15T01:10:51.656895 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
605
+ F, [2018-11-15T01:10:51.662395 #551] FATAL -- :
606
+ AirbrakeTestError (AirbrakeTestError):
607
+ lib/airbrake/rack/middleware.rb:54:in `call'
608
+
609
+
610
+ I, [2018-11-15T01:10:51.669405 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
611
+ I, [2018-11-15T01:10:51.670136 #551] INFO -- : Processing by DummyController#crash as HTML
612
+ I, [2018-11-15T01:10:51.670521 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
613
+ F, [2018-11-15T01:10:51.676700 #551] FATAL -- :
614
+ AirbrakeTestError (AirbrakeTestError):
615
+ lib/airbrake/rack/middleware.rb:54:in `call'
616
+
617
+
618
+ I, [2018-11-15T01:10:51.682971 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
619
+ I, [2018-11-15T01:10:51.683573 #551] INFO -- : Processing by DummyController#crash as HTML
620
+ I, [2018-11-15T01:10:51.683845 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
621
+ F, [2018-11-15T01:10:51.688991 #551] FATAL -- :
622
+ AirbrakeTestError (AirbrakeTestError):
623
+ lib/airbrake/rack/middleware.rb:54:in `call'
624
+
625
+
626
+ I, [2018-11-15T01:10:51.794346 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
627
+ I, [2018-11-15T01:10:51.795340 #551] INFO -- : Processing by DummyController#crash as HTML
628
+ I, [2018-11-15T01:10:51.795744 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
629
+ F, [2018-11-15T01:10:51.806517 #551] FATAL -- :
630
+ AirbrakeTestError (AirbrakeTestError):
631
+ lib/airbrake/rack/middleware.rb:54:in `call'
632
+
633
+
634
+ I, [2018-11-15T01:10:51.808553 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
635
+ I, [2018-11-15T01:10:51.809296 #551] INFO -- : Processing by DummyController#crash as HTML
636
+ I, [2018-11-15T01:10:51.809582 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
637
+ F, [2018-11-15T01:10:51.815500 #551] FATAL -- :
638
+ AirbrakeTestError (AirbrakeTestError):
639
+ lib/airbrake/rack/middleware.rb:54:in `call'
640
+
641
+
642
+ I, [2018-11-15T01:10:51.823952 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
643
+ I, [2018-11-15T01:10:51.824690 #551] INFO -- : Processing by DummyController#crash as HTML
644
+ I, [2018-11-15T01:10:51.824953 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
645
+ F, [2018-11-15T01:10:51.830901 #551] FATAL -- :
646
+ AirbrakeTestError (AirbrakeTestError):
647
+ lib/airbrake/rack/middleware.rb:54:in `call'
648
+
649
+
650
+ I, [2018-11-15T01:10:51.836689 #551] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
651
+ I, [2018-11-15T01:10:51.837257 #551] INFO -- : Processing by DummyController#index as HTML
652
+ I, [2018-11-15T01:10:51.842054 #551] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.8ms)
653
+ I, [2018-11-15T01:10:51.842388 #551] INFO -- : Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
654
+ I, [2018-11-15T01:10:51.844238 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
655
+ I, [2018-11-15T01:10:51.844910 #551] INFO -- : Processing by DummyController#crash as HTML
656
+ I, [2018-11-15T01:10:51.845231 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
657
+ F, [2018-11-15T01:10:51.849942 #551] FATAL -- :
658
+ AirbrakeTestError (AirbrakeTestError):
659
+ lib/airbrake/rack/middleware.rb:54:in `call'
660
+
661
+
662
+ I, [2018-11-15T01:10:51.855942 #551] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:10:51 +0800
663
+ I, [2018-11-15T01:10:51.856551 #551] INFO -- : Processing by DummyController#active_job as HTML
664
+ I, [2018-11-15T01:10:51.866409 #551] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
665
+ F, [2018-11-15T01:10:51.878777 #551] FATAL -- :
666
+ AirbrakeTestError (active_job error):
667
+ lib/airbrake/rack/middleware.rb:54:in `call'
668
+
669
+
670
+ I, [2018-11-15T01:10:53.890154 #551] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:10:53 +0800
671
+ I, [2018-11-15T01:10:53.891050 #551] INFO -- : Processing by DummyController#active_job as HTML
672
+ I, [2018-11-15T01:10:53.899170 #551] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
673
+ F, [2018-11-15T01:10:53.912983 #551] FATAL -- :
674
+ AirbrakeTestError (active_job error):
675
+ lib/airbrake/rack/middleware.rb:54:in `call'
676
+
677
+
678
+ I, [2018-11-15T01:10:55.923263 #551] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:10:55 +0800
679
+ I, [2018-11-15T01:10:55.924024 #551] INFO -- : Processing by DummyController#active_job as HTML
680
+ I, [2018-11-15T01:10:55.924880 #551] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
681
+ F, [2018-11-15T01:10:55.926621 #551] FATAL -- :
682
+ AirbrakeTestError (active_job error):
683
+ lib/airbrake/rack/middleware.rb:54:in `call'
684
+
685
+
686
+ I, [2018-11-15T01:10:57.932721 #551] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:10:57 +0800
687
+ I, [2018-11-15T01:10:57.933744 #551] INFO -- : Processing by DummyController#delayed_job as HTML
688
+ I, [2018-11-15T01:10:57.955533 #551] INFO -- : Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.4ms)
689
+ F, [2018-11-15T01:10:57.961292 #551] FATAL -- :
690
+ AirbrakeTestError (delayed_job error):
691
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
692
+ lib/airbrake/rack/middleware.rb:54:in `call'
693
+
694
+
695
+ I, [2018-11-15T01:11:01.976691 #551] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:11:01 +0800
696
+ I, [2018-11-15T01:11:01.977985 #551] INFO -- : Processing by DummyController#delayed_job as HTML
697
+ I, [2018-11-15T01:11:01.979693 #551] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
698
+ F, [2018-11-15T01:11:01.981449 #551] FATAL -- :
699
+ AirbrakeTestError (delayed_job error):
700
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
701
+ lib/airbrake/rack/middleware.rb:54:in `call'
702
+
703
+
704
+ I, [2018-11-15T01:11:03.990668 #551] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-15 01:11:03 +0800
705
+ I, [2018-11-15T01:11:03.991371 #551] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
706
+ D, [2018-11-15T01:11:03.991637 #551] DEBUG -- :  (0.0ms) begin transaction
707
+ D, [2018-11-15T01:11:03.995366 #551] DEBUG -- : SQL (0.2ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
708
+ D, [2018-11-15T01:11:03.996088 #551] DEBUG -- :  (0.1ms) rollback transaction
709
+ I, [2018-11-15T01:11:03.996472 #551] INFO -- : Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.4ms)
710
+ F, [2018-11-15T01:11:04.006194 #551] FATAL -- :
711
+ AirbrakeTestError (after_rollback):
712
+ lib/airbrake/rack/middleware.rb:54:in `call'
713
+
714
+
715
+ I, [2018-11-15T01:11:04.018847 #551] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
716
+ I, [2018-11-15T01:11:04.019609 #551] INFO -- : Processing by DummyController#active_record_after_commit as HTML
717
+ D, [2018-11-15T01:11:04.020075 #551] DEBUG -- :  (0.1ms) begin transaction
718
+ D, [2018-11-15T01:11:04.020525 #551] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
719
+ D, [2018-11-15T01:11:04.020788 #551] DEBUG -- :  (0.0ms) commit transaction
720
+ I, [2018-11-15T01:11:04.021165 #551] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
721
+ F, [2018-11-15T01:11:04.027663 #551] FATAL -- :
722
+ AirbrakeTestError (after_commit):
723
+ lib/airbrake/rack/middleware.rb:54:in `call'
724
+
725
+
726
+ I, [2018-11-15T01:11:04.034279 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
727
+ I, [2018-11-15T01:11:04.035027 #551] INFO -- : Processing by DummyController#crash as HTML
728
+ I, [2018-11-15T01:11:04.035074 #551] INFO -- : Parameters: {"foo"=>"bar"}
729
+ I, [2018-11-15T01:11:04.035378 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
730
+ F, [2018-11-15T01:11:04.041316 #551] FATAL -- :
731
+ AirbrakeTestError (AirbrakeTestError):
732
+ lib/airbrake/rack/middleware.rb:54:in `call'
733
+
734
+
735
+ I, [2018-11-15T01:11:04.047975 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
736
+ I, [2018-11-15T01:11:04.048619 #551] INFO -- : Processing by DummyController#crash as HTML
737
+ I, [2018-11-15T01:11:04.048656 #551] INFO -- : Parameters: {"foo"=>"bar"}
738
+ I, [2018-11-15T01:11:04.048903 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
739
+ F, [2018-11-15T01:11:04.053481 #551] FATAL -- :
740
+ AirbrakeTestError (AirbrakeTestError):
741
+ lib/airbrake/rack/middleware.rb:54:in `call'
742
+
743
+
744
+ I, [2018-11-15T01:11:04.059484 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
745
+ I, [2018-11-15T01:11:04.060057 #551] INFO -- : Processing by DummyController#crash as HTML
746
+ I, [2018-11-15T01:11:04.060096 #551] INFO -- : Parameters: {"foo"=>"bar"}
747
+ I, [2018-11-15T01:11:04.060311 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
748
+ F, [2018-11-15T01:11:04.066137 #551] FATAL -- :
749
+ AirbrakeTestError (AirbrakeTestError):
750
+ lib/airbrake/rack/middleware.rb:54:in `call'
751
+
752
+
753
+ I, [2018-11-15T01:11:04.072564 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
754
+ I, [2018-11-15T01:11:04.073146 #551] INFO -- : Processing by DummyController#crash as HTML
755
+ I, [2018-11-15T01:11:04.073187 #551] INFO -- : Parameters: {"foo"=>"bar"}
756
+ I, [2018-11-15T01:11:04.073432 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
757
+ F, [2018-11-15T01:11:04.079018 #551] FATAL -- :
758
+ AirbrakeTestError (AirbrakeTestError):
759
+ lib/airbrake/rack/middleware.rb:54:in `call'
760
+
761
+
762
+ I, [2018-11-15T01:11:04.086530 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
763
+ I, [2018-11-15T01:11:04.087076 #551] INFO -- : Processing by DummyController#crash as HTML
764
+ I, [2018-11-15T01:11:04.087118 #551] INFO -- : Parameters: {"foo"=>"bar"}
765
+ I, [2018-11-15T01:11:04.087348 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
766
+ F, [2018-11-15T01:11:04.091998 #551] FATAL -- :
767
+ AirbrakeTestError (AirbrakeTestError):
768
+ lib/airbrake/rack/middleware.rb:54:in `call'
769
+
770
+
771
+ I, [2018-11-15T01:11:04.197381 #551] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
772
+ I, [2018-11-15T01:11:04.198370 #551] INFO -- : Processing by DummyController#crash as HTML
773
+ I, [2018-11-15T01:11:04.198426 #551] INFO -- : Parameters: {"foo"=>"bar"}
774
+ I, [2018-11-15T01:11:04.198780 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
775
+ F, [2018-11-15T01:11:04.209703 #551] FATAL -- :
776
+ AirbrakeTestError (AirbrakeTestError):
777
+ lib/airbrake/rack/middleware.rb:54:in `call'
778
+
779
+
780
+ I, [2018-11-15T01:11:04.212085 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
781
+ I, [2018-11-15T01:11:04.213388 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
782
+ I, [2018-11-15T01:11:04.213455 #551] INFO -- : Parameters: {"foo"=>"bar"}
783
+ I, [2018-11-15T01:11:04.222982 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
784
+ I, [2018-11-15T01:11:04.223251 #551] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
785
+ I, [2018-11-15T01:11:04.225378 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
786
+ I, [2018-11-15T01:11:04.225874 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
787
+ I, [2018-11-15T01:11:04.225910 #551] INFO -- : Parameters: {"foo"=>"bar"}
788
+ I, [2018-11-15T01:11:04.235851 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
789
+ I, [2018-11-15T01:11:04.236180 #551] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
790
+ I, [2018-11-15T01:11:04.238572 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
791
+ I, [2018-11-15T01:11:04.239310 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
792
+ I, [2018-11-15T01:11:04.239365 #551] INFO -- : Parameters: {"foo"=>"bar"}
793
+ I, [2018-11-15T01:11:04.249751 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
794
+ I, [2018-11-15T01:11:04.250008 #551] INFO -- : Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms)
795
+ I, [2018-11-15T01:11:04.252088 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
796
+ I, [2018-11-15T01:11:04.252773 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
797
+ I, [2018-11-15T01:11:04.252822 #551] INFO -- : Parameters: {"foo"=>"bar"}
798
+ I, [2018-11-15T01:11:04.264483 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
799
+ I, [2018-11-15T01:11:04.264783 #551] INFO -- : Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
800
+ I, [2018-11-15T01:11:04.267070 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
801
+ I, [2018-11-15T01:11:04.267754 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
802
+ I, [2018-11-15T01:11:04.267793 #551] INFO -- : Parameters: {"foo"=>"bar"}
803
+ I, [2018-11-15T01:11:04.279086 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
804
+ I, [2018-11-15T01:11:04.279415 #551] INFO -- : Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.0ms)
805
+ I, [2018-11-15T01:11:04.281547 #551] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
806
+ I, [2018-11-15T01:11:04.282165 #551] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
807
+ I, [2018-11-15T01:11:04.282213 #551] INFO -- : Parameters: {"foo"=>"bar"}
808
+ I, [2018-11-15T01:11:04.292270 #551] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
809
+ I, [2018-11-15T01:11:04.292556 #551] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
810
+ I, [2018-11-15T01:11:04.295001 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
811
+ I, [2018-11-15T01:11:04.295723 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
812
+ I, [2018-11-15T01:11:04.295768 #551] INFO -- : Parameters: {"foo"=>"bar"}
813
+ I, [2018-11-15T01:11:04.300641 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
814
+ I, [2018-11-15T01:11:04.305613 #551] INFO -- : Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms)
815
+ I, [2018-11-15T01:11:04.308023 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
816
+ I, [2018-11-15T01:11:04.308796 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
817
+ I, [2018-11-15T01:11:04.308867 #551] INFO -- : Parameters: {"foo"=>"bar"}
818
+ I, [2018-11-15T01:11:04.318834 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
819
+ I, [2018-11-15T01:11:04.319127 #551] INFO -- : Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.0ms)
820
+ I, [2018-11-15T01:11:04.321158 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
821
+ I, [2018-11-15T01:11:04.321767 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
822
+ I, [2018-11-15T01:11:04.321817 #551] INFO -- : Parameters: {"foo"=>"bar"}
823
+ I, [2018-11-15T01:11:04.327544 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
824
+ I, [2018-11-15T01:11:04.334518 #551] INFO -- : Completed 200 OK in 13ms (Views: 7.5ms | ActiveRecord: 0.0ms)
825
+ I, [2018-11-15T01:11:04.336756 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
826
+ I, [2018-11-15T01:11:04.337401 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
827
+ I, [2018-11-15T01:11:04.337455 #551] INFO -- : Parameters: {"foo"=>"bar"}
828
+ I, [2018-11-15T01:11:04.343065 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
829
+ I, [2018-11-15T01:11:04.348086 #551] INFO -- : Completed 200 OK in 11ms (Views: 5.7ms | ActiveRecord: 0.0ms)
830
+ I, [2018-11-15T01:11:04.349989 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
831
+ I, [2018-11-15T01:11:04.350551 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
832
+ I, [2018-11-15T01:11:04.350589 #551] INFO -- : Parameters: {"foo"=>"bar"}
833
+ I, [2018-11-15T01:11:04.355755 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
834
+ I, [2018-11-15T01:11:04.361288 #551] INFO -- : Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.0ms)
835
+ I, [2018-11-15T01:11:04.363319 #551] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
836
+ I, [2018-11-15T01:11:04.363928 #551] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
837
+ I, [2018-11-15T01:11:04.363966 #551] INFO -- : Parameters: {"foo"=>"bar"}
838
+ I, [2018-11-15T01:11:04.368711 #551] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
839
+ I, [2018-11-15T01:11:04.374466 #551] INFO -- : Completed 200 OK in 10ms (Views: 6.3ms | ActiveRecord: 0.0ms)
840
+ I, [2018-11-15T01:11:04.377639 #551] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
841
+ I, [2018-11-15T01:11:04.378599 #551] INFO -- : Processing by DummyController#crash as HTML
842
+ I, [2018-11-15T01:11:04.378977 #551] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
843
+ F, [2018-11-15T01:11:04.384099 #551] FATAL -- :
844
+ AirbrakeTestError (AirbrakeTestError):
845
+ lib/airbrake/rack/middleware.rb:54:in `call'
846
+
847
+
848
+ I, [2018-11-15T01:11:04.390339 #551] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
849
+ I, [2018-11-15T01:11:04.390920 #551] INFO -- : Processing by DummyController#resque as HTML
850
+ I, [2018-11-15T01:11:04.393033 #551] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.3ms)
851
+ I, [2018-11-15T01:11:04.393430 #551] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
852
+ I, [2018-11-15T01:11:04.395185 #551] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:11:04 +0800
853
+ I, [2018-11-15T01:11:04.395796 #551] INFO -- : Processing by DummyController#resque as HTML
854
+ I, [2018-11-15T01:11:04.408161 #551] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
855
+ I, [2018-11-15T01:11:04.408633 #551] INFO -- : Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.0ms)
856
+ D, [2018-11-15T01:11:37.805530 #570] DEBUG -- :  (0.5ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
857
+ D, [2018-11-15T01:11:37.808329 #570] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
858
+ D, [2018-11-15T01:11:37.808575 #570] DEBUG -- :  (0.1ms) select sqlite_version(*)
859
+ D, [2018-11-15T01:11:37.808992 #570] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
860
+ I, [2018-11-15T01:11:37.845425 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:37 +0800
861
+ I, [2018-11-15T01:11:37.847388 #570] INFO -- : Processing by DummyController#crash as HTML
862
+ I, [2018-11-15T01:11:37.847713 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
863
+ F, [2018-11-15T01:11:37.861984 #570] FATAL -- :
864
+ AirbrakeTestError (AirbrakeTestError):
865
+ lib/airbrake/rack/middleware.rb:54:in `call'
866
+
867
+
868
+ I, [2018-11-15T01:11:37.869324 #570] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:11:37 +0800
869
+ I, [2018-11-15T01:11:37.870113 #570] INFO -- : Processing by DummyController#resque as HTML
870
+ I, [2018-11-15T01:11:37.876558 #570] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.8ms)
871
+ I, [2018-11-15T01:11:37.876884 #570] INFO -- : Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.0ms)
872
+ I, [2018-11-15T01:11:37.878514 #570] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-15 01:11:37 +0800
873
+ I, [2018-11-15T01:11:37.878971 #570] INFO -- : Processing by DummyController#resque as HTML
874
+ I, [2018-11-15T01:11:37.894981 #570] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
875
+ I, [2018-11-15T01:11:37.895341 #570] INFO -- : Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.0ms)
876
+ I, [2018-11-15T01:11:37.897580 #570] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:11:37 +0800
877
+ I, [2018-11-15T01:11:37.898193 #570] INFO -- : Processing by DummyController#active_job as HTML
878
+ I, [2018-11-15T01:11:37.908902 #570] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
879
+ F, [2018-11-15T01:11:37.920982 #570] FATAL -- :
880
+ AirbrakeTestError (active_job error):
881
+ lib/airbrake/rack/middleware.rb:54:in `call'
882
+
883
+
884
+ I, [2018-11-15T01:11:39.932250 #570] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:11:39 +0800
885
+ I, [2018-11-15T01:11:39.932866 #570] INFO -- : Processing by DummyController#active_job as HTML
886
+ I, [2018-11-15T01:11:39.939113 #570] INFO -- : Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
887
+ F, [2018-11-15T01:11:39.951907 #570] FATAL -- :
888
+ AirbrakeTestError (active_job error):
889
+ lib/airbrake/rack/middleware.rb:54:in `call'
890
+
891
+
892
+ I, [2018-11-15T01:11:41.964325 #570] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-15 01:11:41 +0800
893
+ I, [2018-11-15T01:11:41.965110 #570] INFO -- : Processing by DummyController#active_job as HTML
894
+ I, [2018-11-15T01:11:41.965973 #570] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
895
+ F, [2018-11-15T01:11:41.967581 #570] FATAL -- :
896
+ AirbrakeTestError (active_job error):
897
+ lib/airbrake/rack/middleware.rb:54:in `call'
898
+
899
+
900
+ I, [2018-11-15T01:11:43.970644 #570] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-15 01:11:43 +0800
901
+ I, [2018-11-15T01:11:43.971760 #570] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
902
+ D, [2018-11-15T01:11:43.972131 #570] DEBUG -- :  (0.1ms) begin transaction
903
+ D, [2018-11-15T01:11:43.979023 #570] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
904
+ D, [2018-11-15T01:11:43.979347 #570] DEBUG -- :  (0.0ms) rollback transaction
905
+ I, [2018-11-15T01:11:43.979738 #570] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.4ms)
906
+ F, [2018-11-15T01:11:43.992239 #570] FATAL -- :
907
+ AirbrakeTestError (after_rollback):
908
+ lib/airbrake/rack/middleware.rb:54:in `call'
909
+
910
+
911
+ I, [2018-11-15T01:11:44.000621 #570] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-15 01:11:44 +0800
912
+ I, [2018-11-15T01:11:44.001279 #570] INFO -- : Processing by DummyController#active_record_after_commit as HTML
913
+ D, [2018-11-15T01:11:44.001664 #570] DEBUG -- :  (0.0ms) begin transaction
914
+ D, [2018-11-15T01:11:44.002089 #570] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
915
+ D, [2018-11-15T01:11:44.002324 #570] DEBUG -- :  (0.0ms) commit transaction
916
+ I, [2018-11-15T01:11:44.002629 #570] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
917
+ F, [2018-11-15T01:11:44.008263 #570] FATAL -- :
918
+ AirbrakeTestError (after_commit):
919
+ lib/airbrake/rack/middleware.rb:54:in `call'
920
+
921
+
922
+ I, [2018-11-15T01:11:44.015002 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:44 +0800
923
+ I, [2018-11-15T01:11:44.015624 #570] INFO -- : Processing by DummyController#crash as HTML
924
+ I, [2018-11-15T01:11:44.015902 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
925
+ F, [2018-11-15T01:11:44.020923 #570] FATAL -- :
926
+ AirbrakeTestError (AirbrakeTestError):
927
+ lib/airbrake/rack/middleware.rb:54:in `call'
928
+
929
+
930
+ I, [2018-11-15T01:11:46.025311 #570] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:11:46 +0800
931
+ I, [2018-11-15T01:11:46.026138 #570] INFO -- : Processing by DummyController#delayed_job as HTML
932
+ I, [2018-11-15T01:11:46.038746 #570] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms)
933
+ F, [2018-11-15T01:11:46.048253 #570] FATAL -- :
934
+ AirbrakeTestError (delayed_job error):
935
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
936
+ lib/airbrake/rack/middleware.rb:54:in `call'
937
+
938
+
939
+ I, [2018-11-15T01:11:50.066181 #570] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-15 01:11:50 +0800
940
+ I, [2018-11-15T01:11:50.067129 #570] INFO -- : Processing by DummyController#delayed_job as HTML
941
+ I, [2018-11-15T01:11:50.068401 #570] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
942
+ F, [2018-11-15T01:11:50.069926 #570] FATAL -- :
943
+ AirbrakeTestError (delayed_job error):
944
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
945
+ lib/airbrake/rack/middleware.rb:54:in `call'
946
+
947
+
948
+ I, [2018-11-15T01:11:52.074649 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
949
+ I, [2018-11-15T01:11:52.075689 #570] INFO -- : Processing by DummyController#crash as HTML
950
+ I, [2018-11-15T01:11:52.076126 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
951
+ F, [2018-11-15T01:11:52.085708 #570] FATAL -- :
952
+ AirbrakeTestError (AirbrakeTestError):
953
+ lib/airbrake/rack/middleware.rb:54:in `call'
954
+
955
+
956
+ I, [2018-11-15T01:11:52.087913 #570] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
957
+ I, [2018-11-15T01:11:52.088517 #570] INFO -- : Processing by DummyController#index as HTML
958
+ I, [2018-11-15T01:11:52.089223 #570] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
959
+ I, [2018-11-15T01:11:52.089472 #570] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
960
+ I, [2018-11-15T01:11:52.091314 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
961
+ I, [2018-11-15T01:11:52.092000 #570] INFO -- : Processing by DummyController#crash as HTML
962
+ I, [2018-11-15T01:11:52.092269 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
963
+ F, [2018-11-15T01:11:52.097254 #570] FATAL -- :
964
+ AirbrakeTestError (AirbrakeTestError):
965
+ lib/airbrake/rack/middleware.rb:54:in `call'
966
+
967
+
968
+ I, [2018-11-15T01:11:52.103390 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
969
+ I, [2018-11-15T01:11:52.104007 #570] INFO -- : Processing by DummyController#crash as HTML
970
+ I, [2018-11-15T01:11:52.104298 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
971
+ F, [2018-11-15T01:11:52.109216 #570] FATAL -- :
972
+ AirbrakeTestError (AirbrakeTestError):
973
+ lib/airbrake/rack/middleware.rb:54:in `call'
974
+
975
+
976
+ I, [2018-11-15T01:11:52.223852 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
977
+ I, [2018-11-15T01:11:52.224875 #570] INFO -- : Processing by DummyController#crash as HTML
978
+ I, [2018-11-15T01:11:52.225279 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
979
+ F, [2018-11-15T01:11:52.238184 #570] FATAL -- :
980
+ AirbrakeTestError (AirbrakeTestError):
981
+ lib/airbrake/rack/middleware.rb:54:in `call'
982
+
983
+
984
+ I, [2018-11-15T01:11:52.239995 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
985
+ I, [2018-11-15T01:11:52.240570 #570] INFO -- : Processing by DummyController#crash as HTML
986
+ I, [2018-11-15T01:11:52.240859 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
987
+ F, [2018-11-15T01:11:52.247964 #570] FATAL -- :
988
+ AirbrakeTestError (AirbrakeTestError):
989
+ lib/airbrake/rack/middleware.rb:54:in `call'
990
+
991
+
992
+ I, [2018-11-15T01:11:52.254536 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
993
+ I, [2018-11-15T01:11:52.255102 #570] INFO -- : Processing by DummyController#crash as HTML
994
+ I, [2018-11-15T01:11:52.255361 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
995
+ F, [2018-11-15T01:11:52.260242 #570] FATAL -- :
996
+ AirbrakeTestError (AirbrakeTestError):
997
+ lib/airbrake/rack/middleware.rb:54:in `call'
998
+
999
+
1000
+ I, [2018-11-15T01:11:52.267085 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1001
+ I, [2018-11-15T01:11:52.267740 #570] INFO -- : Processing by DummyController#crash as HTML
1002
+ I, [2018-11-15T01:11:52.268040 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1003
+ F, [2018-11-15T01:11:52.273610 #570] FATAL -- :
1004
+ AirbrakeTestError (AirbrakeTestError):
1005
+ lib/airbrake/rack/middleware.rb:54:in `call'
1006
+
1007
+
1008
+ I, [2018-11-15T01:11:52.279888 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1009
+ I, [2018-11-15T01:11:52.280502 #570] INFO -- : Processing by DummyController#crash as HTML
1010
+ I, [2018-11-15T01:11:52.280778 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1011
+ F, [2018-11-15T01:11:52.285851 #570] FATAL -- :
1012
+ AirbrakeTestError (AirbrakeTestError):
1013
+ lib/airbrake/rack/middleware.rb:54:in `call'
1014
+
1015
+
1016
+ I, [2018-11-15T01:11:52.291966 #570] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1017
+ I, [2018-11-15T01:11:52.292679 #570] INFO -- : Processing by DummyController#crash as HTML
1018
+ I, [2018-11-15T01:11:52.292964 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1019
+ F, [2018-11-15T01:11:52.298366 #570] FATAL -- :
1020
+ AirbrakeTestError (AirbrakeTestError):
1021
+ lib/airbrake/rack/middleware.rb:54:in `call'
1022
+
1023
+
1024
+ I, [2018-11-15T01:11:52.305348 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1025
+ I, [2018-11-15T01:11:52.306130 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1026
+ I, [2018-11-15T01:11:52.306172 #570] INFO -- : Parameters: {"foo"=>"bar"}
1027
+ I, [2018-11-15T01:11:52.317785 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1028
+ I, [2018-11-15T01:11:52.318084 #570] INFO -- : Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1029
+ I, [2018-11-15T01:11:52.320754 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1030
+ I, [2018-11-15T01:11:52.321442 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1031
+ I, [2018-11-15T01:11:52.321481 #570] INFO -- : Parameters: {"foo"=>"bar"}
1032
+ I, [2018-11-15T01:11:52.330804 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1033
+ I, [2018-11-15T01:11:52.331055 #570] INFO -- : Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1034
+ I, [2018-11-15T01:11:52.332907 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1035
+ I, [2018-11-15T01:11:52.333431 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1036
+ I, [2018-11-15T01:11:52.333471 #570] INFO -- : Parameters: {"foo"=>"bar"}
1037
+ I, [2018-11-15T01:11:52.343546 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1038
+ I, [2018-11-15T01:11:52.343809 #570] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1039
+ I, [2018-11-15T01:11:52.346186 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1040
+ I, [2018-11-15T01:11:52.346938 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1041
+ I, [2018-11-15T01:11:52.346977 #570] INFO -- : Parameters: {"foo"=>"bar"}
1042
+ I, [2018-11-15T01:11:52.358068 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1043
+ I, [2018-11-15T01:11:52.358340 #570] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1044
+ I, [2018-11-15T01:11:52.360480 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1045
+ I, [2018-11-15T01:11:52.361168 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1046
+ I, [2018-11-15T01:11:52.361210 #570] INFO -- : Parameters: {"foo"=>"bar"}
1047
+ I, [2018-11-15T01:11:52.370351 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1048
+ I, [2018-11-15T01:11:52.370731 #570] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1049
+ I, [2018-11-15T01:11:52.373268 #570] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1050
+ I, [2018-11-15T01:11:52.373856 #570] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1051
+ I, [2018-11-15T01:11:52.373896 #570] INFO -- : Parameters: {"foo"=>"bar"}
1052
+ I, [2018-11-15T01:11:52.385650 #570] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
1053
+ I, [2018-11-15T01:11:52.386109 #570] INFO -- : Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1054
+ I, [2018-11-15T01:11:52.388815 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1055
+ I, [2018-11-15T01:11:52.389573 #570] INFO -- : Processing by DummyController#crash as HTML
1056
+ I, [2018-11-15T01:11:52.389614 #570] INFO -- : Parameters: {"foo"=>"bar"}
1057
+ I, [2018-11-15T01:11:52.389834 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1058
+ F, [2018-11-15T01:11:52.395012 #570] FATAL -- :
1059
+ AirbrakeTestError (AirbrakeTestError):
1060
+ lib/airbrake/rack/middleware.rb:54:in `call'
1061
+
1062
+
1063
+ I, [2018-11-15T01:11:52.400710 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1064
+ I, [2018-11-15T01:11:52.401349 #570] INFO -- : Processing by DummyController#crash as HTML
1065
+ I, [2018-11-15T01:11:52.401398 #570] INFO -- : Parameters: {"foo"=>"bar"}
1066
+ I, [2018-11-15T01:11:52.401661 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1067
+ F, [2018-11-15T01:11:52.408016 #570] FATAL -- :
1068
+ AirbrakeTestError (AirbrakeTestError):
1069
+ lib/airbrake/rack/middleware.rb:54:in `call'
1070
+
1071
+
1072
+ I, [2018-11-15T01:11:52.415293 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1073
+ I, [2018-11-15T01:11:52.415963 #570] INFO -- : Processing by DummyController#crash as HTML
1074
+ I, [2018-11-15T01:11:52.416009 #570] INFO -- : Parameters: {"foo"=>"bar"}
1075
+ I, [2018-11-15T01:11:52.416268 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1076
+ F, [2018-11-15T01:11:52.422533 #570] FATAL -- :
1077
+ AirbrakeTestError (AirbrakeTestError):
1078
+ lib/airbrake/rack/middleware.rb:54:in `call'
1079
+
1080
+
1081
+ I, [2018-11-15T01:11:52.430249 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1082
+ I, [2018-11-15T01:11:52.431057 #570] INFO -- : Processing by DummyController#crash as HTML
1083
+ I, [2018-11-15T01:11:52.431110 #570] INFO -- : Parameters: {"foo"=>"bar"}
1084
+ I, [2018-11-15T01:11:52.431419 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1085
+ F, [2018-11-15T01:11:52.438630 #570] FATAL -- :
1086
+ AirbrakeTestError (AirbrakeTestError):
1087
+ lib/airbrake/rack/middleware.rb:54:in `call'
1088
+
1089
+
1090
+ I, [2018-11-15T01:11:52.446139 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1091
+ I, [2018-11-15T01:11:52.446955 #570] INFO -- : Processing by DummyController#crash as HTML
1092
+ I, [2018-11-15T01:11:52.447008 #570] INFO -- : Parameters: {"foo"=>"bar"}
1093
+ I, [2018-11-15T01:11:52.447291 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1094
+ F, [2018-11-15T01:11:52.460799 #570] FATAL -- :
1095
+ AirbrakeTestError (AirbrakeTestError):
1096
+ lib/airbrake/rack/middleware.rb:54:in `call'
1097
+
1098
+
1099
+ I, [2018-11-15T01:11:52.463952 #570] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1100
+ I, [2018-11-15T01:11:52.464653 #570] INFO -- : Processing by DummyController#crash as HTML
1101
+ I, [2018-11-15T01:11:52.464721 #570] INFO -- : Parameters: {"foo"=>"bar"}
1102
+ I, [2018-11-15T01:11:52.465002 #570] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1103
+ F, [2018-11-15T01:11:52.471106 #570] FATAL -- :
1104
+ AirbrakeTestError (AirbrakeTestError):
1105
+ lib/airbrake/rack/middleware.rb:54:in `call'
1106
+
1107
+
1108
+ I, [2018-11-15T01:11:52.478771 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1109
+ I, [2018-11-15T01:11:52.479881 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1110
+ I, [2018-11-15T01:11:52.479932 #570] INFO -- : Parameters: {"foo"=>"bar"}
1111
+ I, [2018-11-15T01:11:52.485612 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
1112
+ I, [2018-11-15T01:11:52.490659 #570] INFO -- : Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1113
+ I, [2018-11-15T01:11:52.493459 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1114
+ I, [2018-11-15T01:11:52.494394 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1115
+ I, [2018-11-15T01:11:52.494527 #570] INFO -- : Parameters: {"foo"=>"bar"}
1116
+ I, [2018-11-15T01:11:52.500470 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1117
+ I, [2018-11-15T01:11:52.506161 #570] INFO -- : Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1118
+ I, [2018-11-15T01:11:52.508952 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1119
+ I, [2018-11-15T01:11:52.510382 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1120
+ I, [2018-11-15T01:11:52.510464 #570] INFO -- : Parameters: {"foo"=>"bar"}
1121
+ I, [2018-11-15T01:11:52.520345 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1122
+ I, [2018-11-15T01:11:52.526798 #570] INFO -- : Completed 200 OK in 16ms (Views: 7.2ms | ActiveRecord: 0.0ms)
1123
+ I, [2018-11-15T01:11:52.530760 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1124
+ I, [2018-11-15T01:11:52.532151 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1125
+ I, [2018-11-15T01:11:52.532210 #570] INFO -- : Parameters: {"foo"=>"bar"}
1126
+ I, [2018-11-15T01:11:52.539422 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1127
+ I, [2018-11-15T01:11:52.547562 #570] INFO -- : Completed 200 OK in 15ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1128
+ I, [2018-11-15T01:11:52.549791 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1129
+ I, [2018-11-15T01:11:52.550433 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1130
+ I, [2018-11-15T01:11:52.550477 #570] INFO -- : Parameters: {"foo"=>"bar"}
1131
+ I, [2018-11-15T01:11:52.560299 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1132
+ I, [2018-11-15T01:11:52.560810 #570] INFO -- : Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1133
+ I, [2018-11-15T01:11:52.563833 #570] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-15 01:11:52 +0800
1134
+ I, [2018-11-15T01:11:52.564447 #570] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1135
+ I, [2018-11-15T01:11:52.564491 #570] INFO -- : Parameters: {"foo"=>"bar"}
1136
+ I, [2018-11-15T01:11:52.569877 #570] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1137
+ I, [2018-11-15T01:11:52.574533 #570] INFO -- : Completed 200 OK in 10ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1138
+ D, [2018-11-16T20:35:49.951333 #20722] DEBUG -- :  (3.2ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
1139
+ D, [2018-11-16T20:35:49.955561 #20722] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
1140
+ D, [2018-11-16T20:35:49.956001 #20722] DEBUG -- :  (0.1ms) select sqlite_version(*)
1141
+ D, [2018-11-16T20:35:49.956395 #20722] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1142
+ I, [2018-11-16T20:35:50.005087 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1143
+ I, [2018-11-16T20:35:50.007454 #20722] INFO -- : Processing by DummyController#crash as HTML
1144
+ I, [2018-11-16T20:35:50.007825 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1145
+ F, [2018-11-16T20:35:50.022384 #20722] FATAL -- :
1146
+ AirbrakeTestError (AirbrakeTestError):
1147
+ lib/airbrake/rack/middleware.rb:54:in `call'
1148
+
1149
+
1150
+ I, [2018-11-16T20:35:50.029584 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1151
+ I, [2018-11-16T20:35:50.030654 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1152
+ I, [2018-11-16T20:35:50.030718 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1153
+ I, [2018-11-16T20:35:50.046165 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (1.1ms)
1154
+ I, [2018-11-16T20:35:50.046619 #20722] INFO -- : Completed 200 OK in 16ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1155
+ I, [2018-11-16T20:35:50.049297 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1156
+ I, [2018-11-16T20:35:50.050029 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1157
+ I, [2018-11-16T20:35:50.050075 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1158
+ I, [2018-11-16T20:35:50.059932 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1159
+ I, [2018-11-16T20:35:50.060217 #20722] INFO -- : Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1160
+ I, [2018-11-16T20:35:50.062217 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1161
+ I, [2018-11-16T20:35:50.062954 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1162
+ I, [2018-11-16T20:35:50.063005 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1163
+ I, [2018-11-16T20:35:50.074410 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
1164
+ I, [2018-11-16T20:35:50.074986 #20722] INFO -- : Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1165
+ I, [2018-11-16T20:35:50.078157 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1166
+ I, [2018-11-16T20:35:50.079101 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1167
+ I, [2018-11-16T20:35:50.079151 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1168
+ I, [2018-11-16T20:35:50.091155 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1169
+ I, [2018-11-16T20:35:50.091404 #20722] INFO -- : Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1170
+ I, [2018-11-16T20:35:50.093380 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1171
+ I, [2018-11-16T20:35:50.093934 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1172
+ I, [2018-11-16T20:35:50.093974 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1173
+ I, [2018-11-16T20:35:50.102596 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1174
+ I, [2018-11-16T20:35:50.102858 #20722] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1175
+ I, [2018-11-16T20:35:50.105618 #20722] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1176
+ I, [2018-11-16T20:35:50.106641 #20722] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1177
+ I, [2018-11-16T20:35:50.106694 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1178
+ I, [2018-11-16T20:35:50.116513 #20722] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1179
+ I, [2018-11-16T20:35:50.116811 #20722] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1180
+ I, [2018-11-16T20:35:50.119071 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1181
+ I, [2018-11-16T20:35:50.119626 #20722] INFO -- : Processing by DummyController#crash as HTML
1182
+ I, [2018-11-16T20:35:50.119669 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1183
+ I, [2018-11-16T20:35:50.119890 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1184
+ F, [2018-11-16T20:35:50.125546 #20722] FATAL -- :
1185
+ AirbrakeTestError (AirbrakeTestError):
1186
+ lib/airbrake/rack/middleware.rb:54:in `call'
1187
+
1188
+
1189
+ I, [2018-11-16T20:35:50.131976 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1190
+ I, [2018-11-16T20:35:50.132727 #20722] INFO -- : Processing by DummyController#crash as HTML
1191
+ I, [2018-11-16T20:35:50.132788 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1192
+ I, [2018-11-16T20:35:50.133068 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1193
+ F, [2018-11-16T20:35:50.138692 #20722] FATAL -- :
1194
+ AirbrakeTestError (AirbrakeTestError):
1195
+ lib/airbrake/rack/middleware.rb:54:in `call'
1196
+
1197
+
1198
+ I, [2018-11-16T20:35:50.144576 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1199
+ I, [2018-11-16T20:35:50.145137 #20722] INFO -- : Processing by DummyController#crash as HTML
1200
+ I, [2018-11-16T20:35:50.145183 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1201
+ I, [2018-11-16T20:35:50.145492 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1202
+ F, [2018-11-16T20:35:50.152411 #20722] FATAL -- :
1203
+ AirbrakeTestError (AirbrakeTestError):
1204
+ lib/airbrake/rack/middleware.rb:54:in `call'
1205
+
1206
+
1207
+ I, [2018-11-16T20:35:50.158230 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1208
+ I, [2018-11-16T20:35:50.158805 #20722] INFO -- : Processing by DummyController#crash as HTML
1209
+ I, [2018-11-16T20:35:50.158847 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1210
+ I, [2018-11-16T20:35:50.159098 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1211
+ F, [2018-11-16T20:35:50.164238 #20722] FATAL -- :
1212
+ AirbrakeTestError (AirbrakeTestError):
1213
+ lib/airbrake/rack/middleware.rb:54:in `call'
1214
+
1215
+
1216
+ I, [2018-11-16T20:35:50.287222 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1217
+ I, [2018-11-16T20:35:50.288154 #20722] INFO -- : Processing by DummyController#crash as HTML
1218
+ I, [2018-11-16T20:35:50.288223 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1219
+ I, [2018-11-16T20:35:50.288568 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1220
+ F, [2018-11-16T20:35:50.299335 #20722] FATAL -- :
1221
+ AirbrakeTestError (AirbrakeTestError):
1222
+ lib/airbrake/rack/middleware.rb:54:in `call'
1223
+
1224
+
1225
+ I, [2018-11-16T20:35:50.301376 #20722] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1226
+ I, [2018-11-16T20:35:50.302021 #20722] INFO -- : Processing by DummyController#crash as HTML
1227
+ I, [2018-11-16T20:35:50.302061 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1228
+ I, [2018-11-16T20:35:50.302298 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1229
+ F, [2018-11-16T20:35:50.307331 #20722] FATAL -- :
1230
+ AirbrakeTestError (AirbrakeTestError):
1231
+ lib/airbrake/rack/middleware.rb:54:in `call'
1232
+
1233
+
1234
+ I, [2018-11-16T20:35:50.314226 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1235
+ I, [2018-11-16T20:35:50.315091 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1236
+ I, [2018-11-16T20:35:50.315142 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1237
+ I, [2018-11-16T20:35:50.321982 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
1238
+ I, [2018-11-16T20:35:50.329212 #20722] INFO -- : Completed 200 OK in 14ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1239
+ I, [2018-11-16T20:35:50.331204 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1240
+ I, [2018-11-16T20:35:50.331809 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1241
+ I, [2018-11-16T20:35:50.331849 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1242
+ I, [2018-11-16T20:35:50.337262 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1243
+ I, [2018-11-16T20:35:50.342796 #20722] INFO -- : Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1244
+ I, [2018-11-16T20:35:50.345010 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1245
+ I, [2018-11-16T20:35:50.345680 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1246
+ I, [2018-11-16T20:35:50.345720 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1247
+ I, [2018-11-16T20:35:50.350869 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1248
+ I, [2018-11-16T20:35:50.355038 #20722] INFO -- : Completed 200 OK in 9ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1249
+ I, [2018-11-16T20:35:50.357186 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1250
+ I, [2018-11-16T20:35:50.358058 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1251
+ I, [2018-11-16T20:35:50.358117 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1252
+ I, [2018-11-16T20:35:50.363604 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1253
+ I, [2018-11-16T20:35:50.368290 #20722] INFO -- : Completed 200 OK in 10ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1254
+ I, [2018-11-16T20:35:50.370837 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1255
+ I, [2018-11-16T20:35:50.371608 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1256
+ I, [2018-11-16T20:35:50.371661 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1257
+ I, [2018-11-16T20:35:50.377537 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1258
+ I, [2018-11-16T20:35:50.382135 #20722] INFO -- : Completed 200 OK in 10ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1259
+ I, [2018-11-16T20:35:50.384657 #20722] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1260
+ I, [2018-11-16T20:35:50.385370 #20722] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1261
+ I, [2018-11-16T20:35:50.385416 #20722] INFO -- : Parameters: {"foo"=>"bar"}
1262
+ I, [2018-11-16T20:35:50.392503 #20722] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1263
+ I, [2018-11-16T20:35:50.396530 #20722] INFO -- : Completed 200 OK in 11ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1264
+ I, [2018-11-16T20:35:50.399980 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1265
+ I, [2018-11-16T20:35:50.400538 #20722] INFO -- : Processing by DummyController#crash as HTML
1266
+ I, [2018-11-16T20:35:50.400809 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1267
+ F, [2018-11-16T20:35:50.405494 #20722] FATAL -- :
1268
+ AirbrakeTestError (AirbrakeTestError):
1269
+ lib/airbrake/rack/middleware.rb:54:in `call'
1270
+
1271
+
1272
+ I, [2018-11-16T20:35:50.412589 #20722] INFO -- : Started GET "/" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1273
+ I, [2018-11-16T20:35:50.413217 #20722] INFO -- : Processing by DummyController#index as HTML
1274
+ I, [2018-11-16T20:35:50.413954 #20722] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
1275
+ I, [2018-11-16T20:35:50.414196 #20722] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1276
+ I, [2018-11-16T20:35:50.415750 #20722] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1277
+ I, [2018-11-16T20:35:50.416201 #20722] INFO -- : Processing by DummyController#resque as HTML
1278
+ I, [2018-11-16T20:35:50.427872 #20722] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
1279
+ I, [2018-11-16T20:35:50.428118 #20722] INFO -- : Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1280
+ I, [2018-11-16T20:35:50.429806 #20722] INFO -- : Started GET "/resque" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1281
+ I, [2018-11-16T20:35:50.430218 #20722] INFO -- : Processing by DummyController#resque as HTML
1282
+ I, [2018-11-16T20:35:50.431482 #20722] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.1ms)
1283
+ I, [2018-11-16T20:35:50.431790 #20722] INFO -- : Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1284
+ I, [2018-11-16T20:35:50.433285 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1285
+ I, [2018-11-16T20:35:50.433815 #20722] INFO -- : Processing by DummyController#crash as HTML
1286
+ I, [2018-11-16T20:35:50.434049 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1287
+ F, [2018-11-16T20:35:50.439031 #20722] FATAL -- :
1288
+ AirbrakeTestError (AirbrakeTestError):
1289
+ lib/airbrake/rack/middleware.rb:54:in `call'
1290
+
1291
+
1292
+ I, [2018-11-16T20:35:50.445359 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1293
+ I, [2018-11-16T20:35:50.445887 #20722] INFO -- : Processing by DummyController#crash as HTML
1294
+ I, [2018-11-16T20:35:50.446117 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1295
+ F, [2018-11-16T20:35:50.451406 #20722] FATAL -- :
1296
+ AirbrakeTestError (AirbrakeTestError):
1297
+ lib/airbrake/rack/middleware.rb:54:in `call'
1298
+
1299
+
1300
+ I, [2018-11-16T20:35:50.461048 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1301
+ I, [2018-11-16T20:35:50.461623 #20722] INFO -- : Processing by DummyController#crash as HTML
1302
+ I, [2018-11-16T20:35:50.461882 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1303
+ F, [2018-11-16T20:35:50.467029 #20722] FATAL -- :
1304
+ AirbrakeTestError (AirbrakeTestError):
1305
+ lib/airbrake/rack/middleware.rb:54:in `call'
1306
+
1307
+
1308
+ I, [2018-11-16T20:35:50.573489 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1309
+ I, [2018-11-16T20:35:50.574678 #20722] INFO -- : Processing by DummyController#crash as HTML
1310
+ I, [2018-11-16T20:35:50.575085 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1311
+ F, [2018-11-16T20:35:50.586117 #20722] FATAL -- :
1312
+ AirbrakeTestError (AirbrakeTestError):
1313
+ lib/airbrake/rack/middleware.rb:54:in `call'
1314
+
1315
+
1316
+ I, [2018-11-16T20:35:50.587981 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1317
+ I, [2018-11-16T20:35:50.588817 #20722] INFO -- : Processing by DummyController#crash as HTML
1318
+ I, [2018-11-16T20:35:50.589196 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1319
+ F, [2018-11-16T20:35:50.594836 #20722] FATAL -- :
1320
+ AirbrakeTestError (AirbrakeTestError):
1321
+ lib/airbrake/rack/middleware.rb:54:in `call'
1322
+
1323
+
1324
+ I, [2018-11-16T20:35:50.601055 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1325
+ I, [2018-11-16T20:35:50.601622 #20722] INFO -- : Processing by DummyController#crash as HTML
1326
+ I, [2018-11-16T20:35:50.601894 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1327
+ F, [2018-11-16T20:35:50.606677 #20722] FATAL -- :
1328
+ AirbrakeTestError (AirbrakeTestError):
1329
+ lib/airbrake/rack/middleware.rb:54:in `call'
1330
+
1331
+
1332
+ I, [2018-11-16T20:35:50.613354 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1333
+ I, [2018-11-16T20:35:50.614081 #20722] INFO -- : Processing by DummyController#crash as HTML
1334
+ I, [2018-11-16T20:35:50.614443 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1335
+ F, [2018-11-16T20:35:50.619339 #20722] FATAL -- :
1336
+ AirbrakeTestError (AirbrakeTestError):
1337
+ lib/airbrake/rack/middleware.rb:54:in `call'
1338
+
1339
+
1340
+ I, [2018-11-16T20:35:50.725833 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1341
+ I, [2018-11-16T20:35:50.726724 #20722] INFO -- : Processing by DummyController#crash as HTML
1342
+ I, [2018-11-16T20:35:50.727172 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1343
+ F, [2018-11-16T20:35:50.740298 #20722] FATAL -- :
1344
+ AirbrakeTestError (AirbrakeTestError):
1345
+ lib/airbrake/rack/middleware.rb:54:in `call'
1346
+
1347
+
1348
+ I, [2018-11-16T20:35:50.742768 #20722] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:35:50 +0800
1349
+ I, [2018-11-16T20:35:50.743461 #20722] INFO -- : Processing by DummyController#active_job as HTML
1350
+ I, [2018-11-16T20:35:50.759907 #20722] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
1351
+ F, [2018-11-16T20:35:50.774019 #20722] FATAL -- :
1352
+ AirbrakeTestError (active_job error):
1353
+ lib/airbrake/rack/middleware.rb:54:in `call'
1354
+
1355
+
1356
+ I, [2018-11-16T20:35:52.784564 #20722] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:35:52 +0800
1357
+ I, [2018-11-16T20:35:52.785466 #20722] INFO -- : Processing by DummyController#active_job as HTML
1358
+ I, [2018-11-16T20:35:52.793692 #20722] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
1359
+ F, [2018-11-16T20:35:52.808924 #20722] FATAL -- :
1360
+ AirbrakeTestError (active_job error):
1361
+ lib/airbrake/rack/middleware.rb:54:in `call'
1362
+
1363
+
1364
+ I, [2018-11-16T20:35:54.818169 #20722] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2018-11-16 20:35:54 +0800
1365
+ I, [2018-11-16T20:35:54.819008 #20722] INFO -- : Processing by DummyController#active_job as HTML
1366
+ I, [2018-11-16T20:35:54.820009 #20722] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1367
+ F, [2018-11-16T20:35:54.821683 #20722] FATAL -- :
1368
+ AirbrakeTestError (active_job error):
1369
+ lib/airbrake/rack/middleware.rb:54:in `call'
1370
+
1371
+
1372
+ I, [2018-11-16T20:35:56.830016 #20722] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-11-16 20:35:56 +0800
1373
+ I, [2018-11-16T20:35:56.831008 #20722] INFO -- : Processing by DummyController#crash as HTML
1374
+ I, [2018-11-16T20:35:56.831367 #20722] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1375
+ F, [2018-11-16T20:35:56.836340 #20722] FATAL -- :
1376
+ AirbrakeTestError (AirbrakeTestError):
1377
+ lib/airbrake/rack/middleware.rb:54:in `call'
1378
+
1379
+
1380
+ I, [2018-11-16T20:35:58.845918 #20722] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:35:58 +0800
1381
+ I, [2018-11-16T20:35:58.848557 #20722] INFO -- : Processing by DummyController#delayed_job as HTML
1382
+ I, [2018-11-16T20:35:58.863975 #20722] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.3ms)
1383
+ F, [2018-11-16T20:35:58.876212 #20722] FATAL -- :
1384
+ AirbrakeTestError (delayed_job error):
1385
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
1386
+ lib/airbrake/rack/middleware.rb:54:in `call'
1387
+
1388
+
1389
+ I, [2018-11-16T20:36:02.891919 #20722] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-11-16 20:36:02 +0800
1390
+ I, [2018-11-16T20:36:02.892694 #20722] INFO -- : Processing by DummyController#delayed_job as HTML
1391
+ I, [2018-11-16T20:36:02.893705 #20722] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1392
+ F, [2018-11-16T20:36:02.895002 #20722] FATAL -- :
1393
+ AirbrakeTestError (delayed_job error):
1394
+ lib/airbrake/delayed_job.rb:10:in `block (2 levels) in <class:Airbrake>'
1395
+ lib/airbrake/rack/middleware.rb:54:in `call'
1396
+
1397
+
1398
+ I, [2018-11-16T20:36:04.900785 #20722] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2018-11-16 20:36:04 +0800
1399
+ I, [2018-11-16T20:36:04.901605 #20722] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
1400
+ D, [2018-11-16T20:36:04.901932 #20722] DEBUG -- :  (0.1ms) begin transaction
1401
+ D, [2018-11-16T20:36:04.906586 #20722] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
1402
+ D, [2018-11-16T20:36:04.906920 #20722] DEBUG -- :  (0.0ms) rollback transaction
1403
+ I, [2018-11-16T20:36:04.907316 #20722] INFO -- : Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.4ms)
1404
+ F, [2018-11-16T20:36:04.923539 #20722] FATAL -- :
1405
+ AirbrakeTestError (after_rollback):
1406
+ lib/airbrake/rack/middleware.rb:54:in `call'
1407
+
1408
+
1409
+ I, [2018-11-16T20:36:04.926265 #20722] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2018-11-16 20:36:04 +0800
1410
+ I, [2018-11-16T20:36:04.926987 #20722] INFO -- : Processing by DummyController#active_record_after_commit as HTML
1411
+ D, [2018-11-16T20:36:04.927359 #20722] DEBUG -- :  (0.0ms) begin transaction
1412
+ D, [2018-11-16T20:36:04.927837 #20722] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
1413
+ D, [2018-11-16T20:36:04.928034 #20722] DEBUG -- :  (0.0ms) commit transaction
1414
+ I, [2018-11-16T20:36:04.928386 #20722] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1415
+ F, [2018-11-16T20:36:04.933760 #20722] FATAL -- :
1416
+ AirbrakeTestError (after_commit):
1417
+ lib/airbrake/rack/middleware.rb:54:in `call'
1418
+
1419
+