airbrake 5.2.1 → 5.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1486b2b695edb4e863a7900b1f7dc436bb2355ae
4
- data.tar.gz: 4064c664bca7af580cd2c8a0417ef155087882e8
3
+ metadata.gz: 5ab2fdcd1dece5b9a45b532ec694718886ec7601
4
+ data.tar.gz: e16322f2166b5132685f1f23ebf5767f4d437f2d
5
5
  SHA512:
6
- metadata.gz: 083999fbbdb4efb0038dac888b0615d83a5558736421fa6780b4d78346143eaa4bcaf6c505317c1da81cde1f8ff3291c4fa356c93e8725e6d3b94c0edb6e2015
7
- data.tar.gz: 9ff19c311a916a3a867360912a09ca62b3293c8f5a5be7ad11d291f47e278a162a63a911dad5b2471a49af7e20013830325e4e15959c29af2aedda7849d20a50
6
+ metadata.gz: ab1375c59c9c5a25413c4c6d236c163e3670aa2fd2c9947dee51a7bcb5f76362d22b370a148d794e622cbac5a1974ba52bb203dac37cc82b447365f3708b268d
7
+ data.tar.gz: c03c7a26c4b0d9b17db076a24529355bdec140cf4708c2e049397ef3dcc2e3c2508011f0975a0897933568664a9a0e75142fc6649b9d131c6cc88f541647517b
@@ -9,8 +9,8 @@ module Airbrake
9
9
  rescue_from(Exception) do |exception|
10
10
  notice = Airbrake.build_notice(exception)
11
11
 
12
- notice[:context][:component] = self.class.name
13
- notice[:context][:action] = job_id
12
+ notice[:context][:component] = 'active_job'
13
+ notice[:context][:action] = self.class.name
14
14
 
15
15
  notice[:params] = as_json
16
16
 
@@ -2,5 +2,5 @@
2
2
  # We use Semantic Versioning v2.0.0
3
3
  # More information: http://semver.org/
4
4
  module Airbrake
5
- AIRBRAKE_VERSION = '5.2.1'.freeze
5
+ AIRBRAKE_VERSION = '5.2.2'.freeze
6
6
  end
@@ -0,0 +1,261 @@
1
+ # Logfile created on 2016-03-23 19:07:15 +0200 by logger.rb/53141
2
+ D, [2016-03-23T19:07:15.443525 #51268] DEBUG -- :  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
3
+ D, [2016-03-23T19:07:15.450414 #51268] DEBUG -- :  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
4
+ D, [2016-03-23T19:07:15.450870 #51268] DEBUG -- :  (0.2ms) select sqlite_version(*)
5
+ D, [2016-03-23T19:07:15.451293 #51268] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
6
+ I, [2016-03-23T19:07:20.811241 #51268] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-03-23 19:07:20 +0200
7
+ I, [2016-03-23T19:07:20.813324 #51268] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
8
+ D, [2016-03-23T19:07:20.813575 #51268] DEBUG -- :  (0.1ms) begin transaction
9
+ D, [2016-03-23T19:07:20.819934 #51268] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
10
+ D, [2016-03-23T19:07:20.820489 #51268] DEBUG -- :  (0.3ms) rollback transaction
11
+ I, [2016-03-23T19:07:20.820952 #51268] INFO -- : Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.7ms)
12
+ F, [2016-03-23T19:07:20.832309 #51268] FATAL -- :
13
+ AirbrakeTestError (after_rollback):
14
+ lib/airbrake/rack/middleware.rb:22:in `call'
15
+
16
+
17
+ I, [2016-03-23T19:07:20.961098 #51268] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-03-23 19:07:20 +0200
18
+ I, [2016-03-23T19:07:20.961919 #51268] INFO -- : Processing by DummyController#active_record_after_commit as HTML
19
+ D, [2016-03-23T19:07:20.962312 #51268] DEBUG -- :  (0.1ms) begin transaction
20
+ D, [2016-03-23T19:07:20.962774 #51268] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
21
+ D, [2016-03-23T19:07:20.962979 #51268] DEBUG -- :  (0.0ms) commit transaction
22
+ I, [2016-03-23T19:07:20.963313 #51268] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
23
+ F, [2016-03-23T19:07:20.971171 #51268] FATAL -- :
24
+ AirbrakeTestError (after_commit):
25
+ lib/airbrake/rack/middleware.rb:22:in `call'
26
+
27
+
28
+ I, [2016-03-23T19:07:20.972879 #51268] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-03-23 19:07:20 +0200
29
+ I, [2016-03-23T19:07:20.973464 #51268] INFO -- : Processing by DummyController#active_job as HTML
30
+ I, [2016-03-23T19:13:28.497957 #51268] INFO -- : Completed 500 Internal Server Error in 367524ms (ActiveRecord: 0.0ms)
31
+ F, [2016-03-23T19:13:28.503185 #51268] FATAL -- :
32
+ AirbrakeTestError (active_job error):
33
+ lib/airbrake/rack/middleware.rb:22:in `call'
34
+
35
+
36
+ D, [2016-03-23T19:13:36.738967 #51547] DEBUG -- :  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
37
+ D, [2016-03-23T19:13:36.742564 #51547] 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)
38
+ D, [2016-03-23T19:13:36.742774 #51547] DEBUG -- :  (0.0ms) select sqlite_version(*)
39
+ D, [2016-03-23T19:13:36.743043 #51547] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
40
+ I, [2016-03-23T19:13:36.770221 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:36 +0200
41
+ I, [2016-03-23T19:13:36.772608 #51547] INFO -- : Processing by DummyController#crash as HTML
42
+ I, [2016-03-23T19:13:36.773621 #51547] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
43
+ F, [2016-03-23T19:13:36.784213 #51547] FATAL -- :
44
+ AirbrakeTestError (AirbrakeTestError):
45
+ lib/airbrake/rack/middleware.rb:22:in `call'
46
+
47
+
48
+ I, [2016-03-23T19:13:36.901532 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:36 +0200
49
+ I, [2016-03-23T19:13:36.902448 #51547] INFO -- : Processing by DummyController#crash as HTML
50
+ I, [2016-03-23T19:13:36.903125 #51547] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
51
+ F, [2016-03-23T19:13:36.914517 #51547] FATAL -- :
52
+ AirbrakeTestError (AirbrakeTestError):
53
+ lib/airbrake/rack/middleware.rb:22:in `call'
54
+
55
+
56
+ I, [2016-03-23T19:13:36.916672 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:36 +0200
57
+ I, [2016-03-23T19:13:36.917165 #51547] INFO -- : Processing by DummyController#crash as HTML
58
+ I, [2016-03-23T19:13:36.917566 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
59
+ F, [2016-03-23T19:13:36.920997 #51547] FATAL -- :
60
+ AirbrakeTestError (AirbrakeTestError):
61
+ lib/airbrake/rack/middleware.rb:22:in `call'
62
+
63
+
64
+ I, [2016-03-23T19:13:37.026490 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
65
+ I, [2016-03-23T19:13:37.036929 #51547] INFO -- : Processing by DummyController#crash as HTML
66
+ I, [2016-03-23T19:13:37.037237 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
67
+ F, [2016-03-23T19:13:37.044116 #51547] FATAL -- :
68
+ AirbrakeTestError (AirbrakeTestError):
69
+ lib/airbrake/rack/middleware.rb:22:in `call'
70
+
71
+
72
+ I, [2016-03-23T19:13:37.045944 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
73
+ I, [2016-03-23T19:13:37.046573 #51547] INFO -- : Processing by DummyController#crash as HTML
74
+ I, [2016-03-23T19:13:37.046822 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
75
+ F, [2016-03-23T19:13:37.049499 #51547] FATAL -- :
76
+ AirbrakeTestError (AirbrakeTestError):
77
+ lib/airbrake/rack/middleware.rb:22:in `call'
78
+
79
+
80
+ I, [2016-03-23T19:13:37.156259 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
81
+ I, [2016-03-23T19:13:37.157101 #51547] INFO -- : Processing by DummyController#crash as HTML
82
+ I, [2016-03-23T19:13:37.157421 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
83
+ F, [2016-03-23T19:13:37.161247 #51547] FATAL -- :
84
+ AirbrakeTestError (AirbrakeTestError):
85
+ lib/airbrake/rack/middleware.rb:22:in `call'
86
+
87
+
88
+ I, [2016-03-23T19:13:37.267496 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
89
+ I, [2016-03-23T19:13:37.268178 #51547] INFO -- : Processing by DummyController#crash as HTML
90
+ I, [2016-03-23T19:13:37.268474 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
91
+ F, [2016-03-23T19:13:37.276533 #51547] FATAL -- :
92
+ AirbrakeTestError (AirbrakeTestError):
93
+ lib/airbrake/rack/middleware.rb:22:in `call'
94
+
95
+
96
+ I, [2016-03-23T19:13:37.278686 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
97
+ I, [2016-03-23T19:13:37.279321 #51547] INFO -- : Processing by DummyController#crash as HTML
98
+ I, [2016-03-23T19:13:37.279659 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
99
+ F, [2016-03-23T19:13:37.283065 #51547] FATAL -- :
100
+ AirbrakeTestError (AirbrakeTestError):
101
+ lib/airbrake/rack/middleware.rb:22:in `call'
102
+
103
+
104
+ I, [2016-03-23T19:13:37.404361 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
105
+ I, [2016-03-23T19:13:37.405471 #51547] INFO -- : Processing by DummyController#crash as HTML
106
+ I, [2016-03-23T19:13:37.405735 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
107
+ F, [2016-03-23T19:13:37.413124 #51547] FATAL -- :
108
+ AirbrakeTestError (AirbrakeTestError):
109
+ lib/airbrake/rack/middleware.rb:22:in `call'
110
+
111
+
112
+ I, [2016-03-23T19:13:37.415138 #51547] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
113
+ I, [2016-03-23T19:13:37.416018 #51547] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
114
+ I, [2016-03-23T19:13:37.416065 #51547] INFO -- : Parameters: {"foo"=>"bar"}
115
+ I, [2016-03-23T19:13:37.432553 #51547] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (1.3ms)
116
+ I, [2016-03-23T19:13:37.432999 #51547] INFO -- : Completed 200 OK in 17ms (Views: 14.2ms | ActiveRecord: 0.0ms)
117
+ I, [2016-03-23T19:13:37.435554 #51547] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
118
+ I, [2016-03-23T19:13:37.436148 #51547] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
119
+ I, [2016-03-23T19:13:37.436176 #51547] INFO -- : Parameters: {"foo"=>"bar"}
120
+ I, [2016-03-23T19:13:37.438928 #51547] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
121
+ I, [2016-03-23T19:13:37.439161 #51547] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
122
+ I, [2016-03-23T19:13:37.546908 #51547] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
123
+ I, [2016-03-23T19:13:37.547863 #51547] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
124
+ I, [2016-03-23T19:13:37.547903 #51547] INFO -- : Parameters: {"foo"=>"bar"}
125
+ I, [2016-03-23T19:13:37.556568 #51547] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
126
+ I, [2016-03-23T19:13:37.556931 #51547] INFO -- : Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.0ms)
127
+ I, [2016-03-23T19:13:37.559138 #51547] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
128
+ I, [2016-03-23T19:13:37.559784 #51547] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
129
+ I, [2016-03-23T19:13:37.559811 #51547] INFO -- : Parameters: {"foo"=>"bar"}
130
+ I, [2016-03-23T19:13:37.562536 #51547] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
131
+ I, [2016-03-23T19:13:37.562791 #51547] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
132
+ I, [2016-03-23T19:13:37.670120 #51547] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
133
+ I, [2016-03-23T19:13:37.671045 #51547] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
134
+ I, [2016-03-23T19:13:37.671086 #51547] INFO -- : Parameters: {"foo"=>"bar"}
135
+ I, [2016-03-23T19:13:37.679065 #51547] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
136
+ I, [2016-03-23T19:13:37.679306 #51547] INFO -- : Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.0ms)
137
+ I, [2016-03-23T19:13:37.681297 #51547] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
138
+ I, [2016-03-23T19:13:37.681880 #51547] INFO -- : Processing by DummyController#crash as HTML
139
+ I, [2016-03-23T19:13:37.681906 #51547] INFO -- : Parameters: {"foo"=>"bar"}
140
+ I, [2016-03-23T19:13:37.682115 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
141
+ F, [2016-03-23T19:13:37.684612 #51547] FATAL -- :
142
+ AirbrakeTestError (AirbrakeTestError):
143
+ lib/airbrake/rack/middleware.rb:22:in `call'
144
+
145
+
146
+ I, [2016-03-23T19:13:37.791295 #51547] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
147
+ I, [2016-03-23T19:13:37.792444 #51547] INFO -- : Processing by DummyController#crash as HTML
148
+ I, [2016-03-23T19:13:37.792484 #51547] INFO -- : Parameters: {"foo"=>"bar"}
149
+ I, [2016-03-23T19:13:37.792811 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
150
+ F, [2016-03-23T19:13:37.801418 #51547] FATAL -- :
151
+ AirbrakeTestError (AirbrakeTestError):
152
+ lib/airbrake/rack/middleware.rb:22:in `call'
153
+
154
+
155
+ I, [2016-03-23T19:13:37.803280 #51547] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
156
+ I, [2016-03-23T19:13:37.803937 #51547] INFO -- : Processing by DummyController#crash as HTML
157
+ I, [2016-03-23T19:13:37.803964 #51547] INFO -- : Parameters: {"foo"=>"bar"}
158
+ I, [2016-03-23T19:13:37.804227 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
159
+ F, [2016-03-23T19:13:37.806949 #51547] FATAL -- :
160
+ AirbrakeTestError (AirbrakeTestError):
161
+ lib/airbrake/rack/middleware.rb:22:in `call'
162
+
163
+
164
+ I, [2016-03-23T19:13:37.914173 #51547] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
165
+ I, [2016-03-23T19:13:37.914990 #51547] INFO -- : Processing by DummyController#crash as HTML
166
+ I, [2016-03-23T19:13:37.915023 #51547] INFO -- : Parameters: {"foo"=>"bar"}
167
+ I, [2016-03-23T19:13:37.915296 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
168
+ F, [2016-03-23T19:13:37.922314 #51547] FATAL -- :
169
+ AirbrakeTestError (AirbrakeTestError):
170
+ lib/airbrake/rack/middleware.rb:22:in `call'
171
+
172
+
173
+ I, [2016-03-23T19:13:37.923862 #51547] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:37 +0200
174
+ I, [2016-03-23T19:13:37.924454 #51547] INFO -- : Processing by DummyController#crash as HTML
175
+ I, [2016-03-23T19:13:37.924481 #51547] INFO -- : Parameters: {"foo"=>"bar"}
176
+ I, [2016-03-23T19:13:37.924731 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
177
+ F, [2016-03-23T19:13:37.927564 #51547] FATAL -- :
178
+ AirbrakeTestError (AirbrakeTestError):
179
+ lib/airbrake/rack/middleware.rb:22:in `call'
180
+
181
+
182
+ I, [2016-03-23T19:13:38.035657 #51547] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
183
+ I, [2016-03-23T19:13:38.036925 #51547] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
184
+ I, [2016-03-23T19:13:38.036965 #51547] INFO -- : Parameters: {"foo"=>"bar"}
185
+ I, [2016-03-23T19:13:38.045657 #51547] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
186
+ I, [2016-03-23T19:13:38.045922 #51547] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
187
+ I, [2016-03-23T19:13:38.047903 #51547] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
188
+ I, [2016-03-23T19:13:38.048537 #51547] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
189
+ I, [2016-03-23T19:13:38.048563 #51547] INFO -- : Parameters: {"foo"=>"bar"}
190
+ I, [2016-03-23T19:13:38.055093 #51547] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
191
+ I, [2016-03-23T19:13:38.055311 #51547] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
192
+ I, [2016-03-23T19:13:38.057223 #51547] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
193
+ I, [2016-03-23T19:13:38.057804 #51547] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
194
+ I, [2016-03-23T19:13:38.057832 #51547] INFO -- : Parameters: {"foo"=>"bar"}
195
+ I, [2016-03-23T19:13:38.064630 #51547] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
196
+ I, [2016-03-23T19:13:38.064865 #51547] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
197
+ I, [2016-03-23T19:13:38.066774 #51547] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
198
+ I, [2016-03-23T19:13:38.067377 #51547] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
199
+ I, [2016-03-23T19:13:38.067403 #51547] INFO -- : Parameters: {"foo"=>"bar"}
200
+ I, [2016-03-23T19:13:38.074631 #51547] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
201
+ I, [2016-03-23T19:13:38.074910 #51547] INFO -- : Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
202
+ I, [2016-03-23T19:13:38.077086 #51547] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
203
+ I, [2016-03-23T19:13:38.078107 #51547] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
204
+ I, [2016-03-23T19:13:38.078145 #51547] INFO -- : Parameters: {"foo"=>"bar"}
205
+ I, [2016-03-23T19:13:38.085211 #51547] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
206
+ I, [2016-03-23T19:13:38.085475 #51547] INFO -- : Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
207
+ I, [2016-03-23T19:13:38.087616 #51547] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
208
+ I, [2016-03-23T19:13:38.090307 #51547] INFO -- : Processing by DummyController#crash as HTML
209
+ I, [2016-03-23T19:13:38.090573 #51547] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
210
+ F, [2016-03-23T19:13:38.093542 #51547] FATAL -- :
211
+ AirbrakeTestError (AirbrakeTestError):
212
+ lib/airbrake/rack/middleware.rb:22:in `call'
213
+
214
+
215
+ I, [2016-03-23T19:13:38.201225 #51547] INFO -- : Started GET "/" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
216
+ I, [2016-03-23T19:13:38.202202 #51547] INFO -- : Processing by DummyController#index as HTML
217
+ I, [2016-03-23T19:13:38.203293 #51547] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
218
+ I, [2016-03-23T19:13:38.203656 #51547] INFO -- : Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
219
+ I, [2016-03-23T19:13:38.205075 #51547] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
220
+ I, [2016-03-23T19:13:38.205621 #51547] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
221
+ D, [2016-03-23T19:13:38.205963 #51547] DEBUG -- :  (0.1ms) begin transaction
222
+ D, [2016-03-23T19:13:38.211701 #51547] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
223
+ D, [2016-03-23T19:13:38.211933 #51547] DEBUG -- :  (0.0ms) rollback transaction
224
+ I, [2016-03-23T19:13:38.212204 #51547] INFO -- : Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.4ms)
225
+ F, [2016-03-23T19:13:38.222757 #51547] FATAL -- :
226
+ AirbrakeTestError (after_rollback):
227
+ lib/airbrake/rack/middleware.rb:22:in `call'
228
+
229
+
230
+ I, [2016-03-23T19:13:38.224588 #51547] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
231
+ I, [2016-03-23T19:13:38.225219 #51547] INFO -- : Processing by DummyController#active_record_after_commit as HTML
232
+ D, [2016-03-23T19:13:38.225561 #51547] DEBUG -- :  (0.1ms) begin transaction
233
+ D, [2016-03-23T19:13:38.225912 #51547] DEBUG -- : SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
234
+ D, [2016-03-23T19:13:38.226124 #51547] DEBUG -- :  (0.0ms) commit transaction
235
+ I, [2016-03-23T19:13:38.226394 #51547] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
236
+ F, [2016-03-23T19:13:38.229874 #51547] FATAL -- :
237
+ AirbrakeTestError (after_commit):
238
+ lib/airbrake/rack/middleware.rb:22:in `call'
239
+
240
+
241
+ I, [2016-03-23T19:13:38.335346 #51547] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
242
+ I, [2016-03-23T19:13:38.336179 #51547] INFO -- : Processing by DummyController#resque as HTML
243
+ I, [2016-03-23T19:13:38.345059 #51547] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
244
+ I, [2016-03-23T19:13:38.345332 #51547] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
245
+ I, [2016-03-23T19:13:38.347448 #51547] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-03-23 19:13:38 +0200
246
+ I, [2016-03-23T19:13:38.347993 #51547] INFO -- : Processing by DummyController#active_job as HTML
247
+ I, [2016-03-23T19:13:38.355079 #51547] INFO -- : Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
248
+ F, [2016-03-23T19:13:38.358909 #51547] FATAL -- :
249
+ AirbrakeTestError (active_job error):
250
+ lib/airbrake/rack/middleware.rb:22:in `call'
251
+
252
+
253
+ I, [2016-03-23T19:13:40.364884 #51547] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-03-23 19:13:40 +0200
254
+ I, [2016-03-23T19:13:40.365674 #51547] INFO -- : Processing by DummyController#delayed_job as HTML
255
+ I, [2016-03-23T19:13:40.378773 #51547] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms)
256
+ F, [2016-03-23T19:13:40.386699 #51547] FATAL -- :
257
+ AirbrakeTestError (delayed_job error):
258
+ lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
259
+ lib/airbrake/rack/middleware.rb:22:in `call'
260
+
261
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.1
4
+ version: 5.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Airbrake Technologies, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-21 00:00:00.000000000 Z
11
+ date: 2016-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: airbrake-ruby
@@ -187,6 +187,7 @@ files:
187
187
  - spec/apps/rack/dummy_app.rb
188
188
  - spec/apps/rails/dummy_app.rb
189
189
  - spec/apps/rails/dummy_task.rake
190
+ - spec/apps/rails/logs/42.log
190
191
  - spec/apps/sinatra/dummy_app.rb
191
192
  - spec/integration/rack/rack_spec.rb
192
193
  - spec/integration/rails/rails_spec.rb
@@ -229,6 +230,7 @@ test_files:
229
230
  - spec/apps/rack/dummy_app.rb
230
231
  - spec/apps/rails/dummy_app.rb
231
232
  - spec/apps/rails/dummy_task.rake
233
+ - spec/apps/rails/logs/42.log
232
234
  - spec/apps/sinatra/dummy_app.rb
233
235
  - spec/integration/rack/rack_spec.rb
234
236
  - spec/integration/rails/rails_spec.rb