airbrake 4.3.6 → 4.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +11 -0
- data/lib/airbrake/utils/params_cleaner.rb +5 -6
- data/lib/airbrake/version.rb +1 -1
- data/resources/notice.xml +1 -0
- data/test/params_cleaner_test.rb +2 -2
- metadata +3 -12
- data/spec/apps/rails/logs/32.log +0 -214
- data/spec/apps/rails/logs/40.log +0 -452
- data/spec/apps/rails/logs/41.log +0 -457
- data/spec/apps/rails/logs/42.log +0 -1005
- data/spec/apps/rails/logs/50.log +0 -465
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4394255e458b6bdd939b6036a897634491af6eb7
|
|
4
|
+
data.tar.gz: 2b8a2473fd8ce00b2dcea29b53c3cb0063f5edef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a7861e10f63b3ac04f9190c35e815adcd4522835052d7ecff5114ca62c9d8914f606201596aec1cccc4970d02eedb5881a7cfe20642cfd345b8466382c59694
|
|
7
|
+
data.tar.gz: 1ad078ed6ccdbe3ab2397a84cd943bae493b1768eeacdc4e09e74d73712a3db4cb2803893c52cd5e844e03310c22b021739a04b45bb6d12c0c2a52ca283b10cf
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
Version 4.3.7 - 2016-06-14 19:33:24 +0300
|
|
2
|
+
===============================================================================
|
|
3
|
+
|
|
4
|
+
Egor Lynko (1):
|
|
5
|
+
Fix params cleaner for deep nested arrays
|
|
6
|
+
|
|
7
|
+
Kyrylo Silin (1):
|
|
8
|
+
Merge pull request #559 from flexoid/fix-params-cleaner-for-nested-arrays
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
Version 4.3.6 - 2016-02-17 19:35:46 +0200
|
|
2
12
|
===============================================================================
|
|
3
13
|
|
|
@@ -1690,5 +1700,6 @@ Nick Quaranto (3):
|
|
|
1690
1700
|
|
|
1691
1701
|
|
|
1692
1702
|
|
|
1703
|
+
|
|
1693
1704
|
|
|
1694
1705
|
|
|
@@ -97,16 +97,15 @@ module Airbrake
|
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
def filter(hash)
|
|
100
|
+
return hash unless hash.is_a?(Hash)
|
|
101
|
+
|
|
100
102
|
hash.each do |key, value|
|
|
101
|
-
if
|
|
103
|
+
if filter_key?(key)
|
|
102
104
|
hash[key] = "[FILTERED]"
|
|
103
105
|
elsif value.respond_to?(:to_hash)
|
|
104
|
-
filter(
|
|
106
|
+
filter(value)
|
|
105
107
|
elsif value.is_a?(Array)
|
|
106
|
-
hash[key] = value.
|
|
107
|
-
item = filter(item) if item.is_a?(Enumerable)
|
|
108
|
-
result.push(item)
|
|
109
|
-
end
|
|
108
|
+
hash[key] = value.map { |item| filter(item) }
|
|
110
109
|
end
|
|
111
110
|
end
|
|
112
111
|
end
|
data/lib/airbrake/version.rb
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><notice version="2.4"><api-key>myapikey</api-key><notifier><name>Airbrake Notifier</name><version>4.3.6</version><url>https://github.com/airbrake/airbrake</url></notifier><error><class>RuntimeError</class><message>RuntimeError: some message</message><backtrace><line number="5" file="[PROJECT_ROOT]/app/controllers/test_controller.rb" method="index"/><line number="4" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/implicit_render.rb" method="send_action"/><line number="189" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/abstract_controller/base.rb" method="process_action"/><line number="10" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/rendering.rb" method="process_action"/><line number="18" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb" method="block in process_action"/><line number="383" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/callbacks.rb" method="_run__2015825863713144782__process_action__callbacks"/><line number="80" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/callbacks.rb" method="run_callbacks"/><line number="17" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb" method="process_action"/><line number="29" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/rescue.rb" method="process_action"/><line number="31" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb" method="block in process_action"/><line number="159" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/notifications.rb" method="block in instrument"/><line number="20" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/notifications/instrumenter.rb" method="instrument"/><line number="159" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/notifications.rb" method="instrument"/><line number="30" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb" method="process_action"/><line number="250" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/params_wrapper.rb" method="process_action"/><line number="136" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/abstract_controller/base.rb" method="process"/><line number="44" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/abstract_controller/rendering.rb" method="process"/><line number="195" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal.rb" method="dispatch"/><line number="13" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal/rack_delegation.rb" method="dispatch"/><line number="231" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_controller/metal.rb" method="block in action"/><line number="82" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb" method="dispatch"/><line number="50" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb" method="call"/><line number="71" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb" method="block in call"/><line number="59" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb" method="each"/><line number="59" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb" method="call"/><line number="676" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb" method="call"/><line number="23" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/etag.rb" method="call"/><line number="25" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/conditionalget.rb" method="call"/><line number="11" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/head.rb" method="call"/><line number="27" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/params_parser.rb" method="call"/><line number="241" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/flash.rb" method="call"/><line number="225" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/session/abstract/id.rb" method="context"/><line number="220" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/session/abstract/id.rb" method="call"/><line number="486" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/cookies.rb" method="call"/><line number="29" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb" method="block in call"/><line number="373" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/callbacks.rb" method="_run__1749870935947095276__call__callbacks"/><line number="80" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/callbacks.rb" method="run_callbacks"/><line number="27" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb" method="call"/><line number="76" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/remote_ip.rb" method="call"/><line number="17" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/debug_exceptions.rb" method="call"/><line number="30" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/show_exceptions.rb" method="call"/><line number="38" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/rack/logger.rb" method="call_app"/><line number="20" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/rack/logger.rb" method="block in call"/><line number="68" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/tagged_logging.rb" method="block in tagged"/><line number="26" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/tagged_logging.rb" method="tagged"/><line number="68" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/tagged_logging.rb" method="tagged"/><line number="20" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/rack/logger.rb" method="call"/><line number="21" file="[GEM_ROOT]/gems/actionpack-4.0.13/lib/action_dispatch/middleware/request_id.rb" method="call"/><line number="21" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/methodoverride.rb" method="call"/><line number="17" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/runtime.rb" method="call"/><line number="83" file="[GEM_ROOT]/gems/activesupport-4.0.13/lib/active_support/cache/strategy/local_cache.rb" method="call"/><line number="112" file="[GEM_ROOT]/gems/rack-1.5.5/lib/rack/sendfile.rb" method="call"/><line number="511" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/engine.rb" method="call"/><line number="97" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/application.rb" method="call"/><line number="30" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/railtie/configurable.rb" method="method_missing"/><line number="4" file="request.rb" method="<top (required)>"/><line number="51" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/commands/runner.rb" method="eval"/><line number="51" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/commands/runner.rb" method="<top (required)>"/><line number="84" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/commands.rb" method="require"/><line number="84" file="[GEM_ROOT]/gems/railties-4.0.13/lib/rails/commands.rb" method="<top (required)>"/><line number="4" file="bin/rails" method="require"/><line number="4" file="bin/rails" method="<main>"/></backtrace></error><request><url>http://example.com:123/test/index</url><component>test</component><action>index</action><params><var key="controller">test</var><var key="action">index</var></params><cgi-data><var key="rack.version">["1", "2"]</var><var key="rack.multithread">true</var><var key="rack.multiprocess">true</var><var key="rack.run_once">false</var><var key="REQUEST_METHOD">GET</var><var key="SERVER_NAME">example.com</var><var key="SERVER_PORT">123</var><var key="QUERY_STRING"></var><var key="PATH_INFO">/test/index</var><var key="rack.url_scheme">http</var><var key="HTTPS">off</var><var key="SCRIPT_NAME"></var><var key="CONTENT_LENGTH">0</var><var key="ORIGINAL_FULLPATH">/test/index</var><var key="ORIGINAL_SCRIPT_NAME"></var><var key="action_dispatch.parameter_filter">["password"]</var><var key="action_dispatch.redirect_filter">[]</var><var key="action_dispatch.show_exceptions">true</var><var key="action_dispatch.show_detailed_exceptions">false</var><var key="ROUTES_70161292926060_SCRIPT_NAME"></var><var key="action_dispatch.request_id">c9d36a59-abe3-426d-aa9a-290ee46b5ae8</var><var key="action_dispatch.remote_ip"></var><var key="action_dispatch.request.path_parameters"><var key="controller">test</var><var key="action">index</var></var><var key="action_dispatch.request.content_type"></var><var key="action_dispatch.request.request_parameters"></var><var key="rack.request.query_string"></var><var key="rack.request.query_hash"></var><var key="action_dispatch.request.query_parameters"></var><var key="action_dispatch.request.parameters"><var key="controller">test</var><var key="action">index</var></var><var key="action_dispatch.request.formats">["text/html"]</var></cgi-data></request><server-environment><project-root>/Users/kyrylo/Code/airbrake/airbrake/tmp/rails_root</project-root><environment-name>production</environment-name><hostname>Kyrylos-MacBook-Pro.local</hostname></server-environment><framework>Rails: 4.0.13</framework></notice>
|
data/test/params_cleaner_test.rb
CHANGED
|
@@ -37,7 +37,7 @@ class ParamsCleanerTest < Test::Unit::TestCase
|
|
|
37
37
|
'ghi' => '789',
|
|
38
38
|
'something_with_abc' => 'match the entire string',
|
|
39
39
|
'nested_hash' => { 'abc' => '100', 'ghi' => '789' },
|
|
40
|
-
'nested_array' => [{ 'abc' => '100' }, { 'ghi' => '789' }, 'xyz']
|
|
40
|
+
'nested_array' => [{ 'abc' => '100' }, { 'ghi' => '789' }, 'xyz', [['asd', []]]]
|
|
41
41
|
}
|
|
42
42
|
filtered = {
|
|
43
43
|
'abc' => '[FILTERED]',
|
|
@@ -45,7 +45,7 @@ class ParamsCleanerTest < Test::Unit::TestCase
|
|
|
45
45
|
'ghi' => '789',
|
|
46
46
|
'something_with_abc' => 'match the entire string',
|
|
47
47
|
'nested_hash' => { 'abc' => '[FILTERED]', 'ghi' => '789' },
|
|
48
|
-
'nested_array' => [{ 'abc' => '[FILTERED]' }, { 'ghi' => '789' }, 'xyz']
|
|
48
|
+
'nested_array' => [{ 'abc' => '[FILTERED]' }, { 'ghi' => '789' }, 'xyz', [['asd', []]]]
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
clean_params = clean(:params_filters => filters, attribute => original)
|
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: 4.3.
|
|
4
|
+
version: 4.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Airbrake
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: builder
|
|
@@ -387,12 +387,8 @@ files:
|
|
|
387
387
|
- resources/airbrake_2_4.xsd
|
|
388
388
|
- resources/airbrake_3_0.json
|
|
389
389
|
- resources/ca-bundle.crt
|
|
390
|
+
- resources/notice.xml
|
|
390
391
|
- script/integration_test.rb
|
|
391
|
-
- spec/apps/rails/logs/32.log
|
|
392
|
-
- spec/apps/rails/logs/40.log
|
|
393
|
-
- spec/apps/rails/logs/41.log
|
|
394
|
-
- spec/apps/rails/logs/42.log
|
|
395
|
-
- spec/apps/rails/logs/50.log
|
|
396
392
|
- test/airbrake_tasks_test.rb
|
|
397
393
|
- test/backtrace_test.rb
|
|
398
394
|
- test/capistrano_test.rb
|
|
@@ -456,11 +452,6 @@ test_files:
|
|
|
456
452
|
- test/sender_test.rb
|
|
457
453
|
- test/support/response_shim.xml
|
|
458
454
|
- test/user_informer_test.rb
|
|
459
|
-
- spec/apps/rails/logs/32.log
|
|
460
|
-
- spec/apps/rails/logs/40.log
|
|
461
|
-
- spec/apps/rails/logs/41.log
|
|
462
|
-
- spec/apps/rails/logs/42.log
|
|
463
|
-
- spec/apps/rails/logs/50.log
|
|
464
455
|
- features/metal.feature
|
|
465
456
|
- features/rack.feature
|
|
466
457
|
- features/rails.feature
|
data/spec/apps/rails/logs/32.log
DELETED
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
# Logfile created on 2016-02-08 16:21:45 +0200 by logger.rb/53141
|
|
2
|
-
Connecting to database specified by DATABASE_URL
|
|
3
|
-
[1m[36m (1.2ms)[0m [1mselect sqlite_version(*)[0m
|
|
4
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
|
5
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
|
6
|
-
[1m[35m (0.4ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
|
7
|
-
Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
8
|
-
Processing by DummyController#active_record_after_commit as HTML
|
|
9
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
10
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
|
11
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
|
12
|
-
#<AirbrakeTestError: after_commit>
|
|
13
|
-
Rendered dummy/active_record_after_commit.html.erb within layouts/application (1.0ms)
|
|
14
|
-
Completed 200 OK in 29.9ms (Views: 7.2ms | ActiveRecord: 0.8ms)
|
|
15
|
-
Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
16
|
-
Processing by DummyController#active_record_after_rollback as HTML
|
|
17
|
-
[1m[35m (0.1ms)[0m begin transaction
|
|
18
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
|
19
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
20
|
-
#<AirbrakeTestError: after_rollback>
|
|
21
|
-
Rendered dummy/active_record_after_rollback.html.erb within layouts/application (0.3ms)
|
|
22
|
-
Completed 200 OK in 35.2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
|
23
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
24
|
-
Processing by DummyController#crash as HTML
|
|
25
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
26
|
-
|
|
27
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
28
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
32
|
-
Processing by DummyController#crash as HTML
|
|
33
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
34
|
-
|
|
35
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
36
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
40
|
-
Processing by DummyController#crash as HTML
|
|
41
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
42
|
-
|
|
43
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
44
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:46 +0200
|
|
48
|
-
Processing by DummyController#crash as HTML
|
|
49
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
50
|
-
|
|
51
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
52
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
56
|
-
Processing by DummyController#crash as HTML
|
|
57
|
-
Completed 500 Internal Server Error in 0.4ms
|
|
58
|
-
|
|
59
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
60
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
64
|
-
Processing by DummyController#crash as HTML
|
|
65
|
-
Completed 500 Internal Server Error in 0.4ms
|
|
66
|
-
|
|
67
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
68
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
72
|
-
Processing by DummyController#crash as HTML
|
|
73
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
74
|
-
|
|
75
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
76
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
80
|
-
Processing by DummyController#crash as HTML
|
|
81
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
82
|
-
|
|
83
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
84
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
Started GET "/" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
88
|
-
Processing by DummyController#index as HTML
|
|
89
|
-
Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
|
90
|
-
Completed 200 OK in 1.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
|
91
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
92
|
-
Processing by DummyController#crash as HTML
|
|
93
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
94
|
-
|
|
95
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
96
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
100
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
|
101
|
-
Parameters: {"foo"=>"bar"}
|
|
102
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.6ms)
|
|
103
|
-
Completed 200 OK in 30.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
104
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
105
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
|
106
|
-
Parameters: {"foo"=>"bar"}
|
|
107
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
|
108
|
-
Completed 200 OK in 6.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
|
109
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
110
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
|
111
|
-
Parameters: {"foo"=>"bar"}
|
|
112
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
|
113
|
-
Completed 200 OK in 30.7ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
|
114
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
115
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
|
116
|
-
Parameters: {"foo"=>"bar"}
|
|
117
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
|
118
|
-
Completed 200 OK in 5.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
119
|
-
Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
120
|
-
Processing by DummyController#notify_airbrake_helper as HTML
|
|
121
|
-
Parameters: {"foo"=>"bar"}
|
|
122
|
-
Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
|
123
|
-
Completed 200 OK in 27.1ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
|
124
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
125
|
-
Processing by DummyController#crash as HTML
|
|
126
|
-
Parameters: {"foo"=>"bar"}
|
|
127
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
128
|
-
|
|
129
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
130
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
134
|
-
Processing by DummyController#crash as HTML
|
|
135
|
-
Parameters: {"foo"=>"bar"}
|
|
136
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
137
|
-
|
|
138
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
139
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:47 +0200
|
|
143
|
-
Processing by DummyController#crash as HTML
|
|
144
|
-
Parameters: {"foo"=>"bar"}
|
|
145
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
146
|
-
|
|
147
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
148
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
152
|
-
Processing by DummyController#crash as HTML
|
|
153
|
-
Parameters: {"foo"=>"bar"}
|
|
154
|
-
Completed 500 Internal Server Error in 0.6ms
|
|
155
|
-
|
|
156
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
157
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
161
|
-
Processing by DummyController#crash as HTML
|
|
162
|
-
Parameters: {"foo"=>"bar"}
|
|
163
|
-
Completed 500 Internal Server Error in 0.3ms
|
|
164
|
-
|
|
165
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
166
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
170
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
171
|
-
Parameters: {"foo"=>"bar"}
|
|
172
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.5ms)
|
|
173
|
-
Completed 200 OK in 27.2ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
174
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
175
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
176
|
-
Parameters: {"foo"=>"bar"}
|
|
177
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
178
|
-
Completed 200 OK in 19.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
179
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
180
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
181
|
-
Parameters: {"foo"=>"bar"}
|
|
182
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
|
183
|
-
Completed 200 OK in 20.9ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
184
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
185
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
186
|
-
Parameters: {"foo"=>"bar"}
|
|
187
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
188
|
-
Completed 200 OK in 23.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
189
|
-
Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
190
|
-
Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
191
|
-
Parameters: {"foo"=>"bar"}
|
|
192
|
-
Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
|
193
|
-
Completed 200 OK in 18.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
194
|
-
Started GET "/delayed_job" for 127.0.0.1 at 2016-02-08 16:21:48 +0200
|
|
195
|
-
Processing by DummyController#delayed_job as HTML
|
|
196
|
-
Completed 500 Internal Server Error in 17.6ms
|
|
197
|
-
|
|
198
|
-
AirbrakeTestError (delayed_job error):
|
|
199
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
|
200
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:21:52 +0200
|
|
204
|
-
Processing by DummyController#crash as HTML
|
|
205
|
-
Completed 500 Internal Server Error in 0.5ms
|
|
206
|
-
|
|
207
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
208
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
Started GET "/resque" for 127.0.0.1 at 2016-02-08 16:21:52 +0200
|
|
212
|
-
Processing by DummyController#resque as HTML
|
|
213
|
-
Rendered dummy/resque.html.erb within layouts/application (0.7ms)
|
|
214
|
-
Completed 200 OK in 37.7ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
data/spec/apps/rails/logs/40.log
DELETED
|
@@ -1,452 +0,0 @@
|
|
|
1
|
-
# Logfile created on 2016-02-08 16:22:05 +0200 by logger.rb/53141
|
|
2
|
-
D, [2016-02-08T16:22:06.313303 #22300] DEBUG -- : [1m[36m (1.3ms)[0m [1mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255)) [0m
|
|
3
|
-
D, [2016-02-08T16:22:06.338177 #22300] DEBUG -- : [1m[35m (0.4ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime)
|
|
4
|
-
D, [2016-02-08T16:22:06.338998 #22300] DEBUG -- : [1m[36m (0.2ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
5
|
-
I, [2016-02-08T16:22:06.381014 #22300] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-02-08 16:22:06 +0200
|
|
6
|
-
I, [2016-02-08T16:22:06.395779 #22300] INFO -- : Processing by DummyController#delayed_job as HTML
|
|
7
|
-
I, [2016-02-08T16:22:06.412729 #22300] INFO -- : Completed 500 Internal Server Error in 17ms
|
|
8
|
-
F, [2016-02-08T16:22:06.438730 #22300] FATAL -- :
|
|
9
|
-
AirbrakeTestError (delayed_job error):
|
|
10
|
-
lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
|
11
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
I, [2016-02-08T16:22:10.451295 #22300] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
15
|
-
I, [2016-02-08T16:22:10.454753 #22300] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
|
16
|
-
D, [2016-02-08T16:22:10.455595 #22300] DEBUG -- : [1m[35m (0.2ms)[0m begin transaction
|
|
17
|
-
D, [2016-02-08T16:22:10.465724 #22300] DEBUG -- : [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
|
18
|
-
D, [2016-02-08T16:22:10.466450 #22300] DEBUG -- : [1m[35m (0.2ms)[0m rollback transaction
|
|
19
|
-
E, [2016-02-08T16:22:10.498959 #22300] ERROR -- : after_rollback (AirbrakeTestError)
|
|
20
|
-
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:52:in `raise_error_after_rollback'
|
|
21
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:375:in `_run__328253211629888034__rollback__callbacks'
|
|
22
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
23
|
-
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rails/active_record.rb:31:in `run_callbacks'
|
|
24
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:306:in `rolledback!'
|
|
25
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:136:in `block in rollback_records'
|
|
26
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:134:in `each'
|
|
27
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:134:in `rollback_records'
|
|
28
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:176:in `perform_rollback'
|
|
29
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
|
|
30
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:241:in `rollback_transaction'
|
|
31
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `rescue in within_new_transaction'
|
|
32
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:222:in `within_new_transaction'
|
|
33
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `transaction'
|
|
34
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:209:in `transaction'
|
|
35
|
-
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:120:in `active_record_after_rollback'
|
|
36
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
37
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:189:in `process_action'
|
|
38
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
39
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
40
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__478450324802621910__process_action__callbacks'
|
|
41
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
42
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
43
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
44
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
45
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `block in instrument'
|
|
46
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
47
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `instrument'
|
|
48
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
49
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
50
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
51
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:136:in `process'
|
|
52
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/rendering.rb:44:in `process'
|
|
53
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:195:in `dispatch'
|
|
54
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
55
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:231:in `block in action'
|
|
56
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
|
57
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:50:in `call'
|
|
58
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
59
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `each'
|
|
60
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `call'
|
|
61
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
62
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:35:in `block in call'
|
|
63
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `catch'
|
|
64
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `call'
|
|
65
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/etag.rb:23:in `call'
|
|
66
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/conditionalget.rb:25:in `call'
|
|
67
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/head.rb:11:in `call'
|
|
68
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
69
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
70
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:225:in `context'
|
|
71
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:220:in `call'
|
|
72
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
|
73
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/query_cache.rb:36:in `call'
|
|
74
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
|
75
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
76
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__1586469104705807260__call__callbacks'
|
|
77
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
78
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
79
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
80
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
81
|
-
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rack/middleware.rb:22:in `call'
|
|
82
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
83
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
84
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:38:in `call_app'
|
|
85
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:22:in `call'
|
|
86
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
87
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/methodoverride.rb:21:in `call'
|
|
88
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/runtime.rb:17:in `call'
|
|
89
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
|
90
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/lock.rb:17:in `call'
|
|
91
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/static.rb:84:in `call'
|
|
92
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/sendfile.rb:112:in `call'
|
|
93
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/engine.rb:511:in `call'
|
|
94
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/application.rb:97:in `call'
|
|
95
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'
|
|
96
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'
|
|
97
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'
|
|
98
|
-
/opt/rubies/ruby-2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
|
99
|
-
/home/kyrylo/code/airbrake/airbrake/spec/integration/rails/rails_spec.rb:86:in `block (3 levels) in <top (required)>'
|
|
100
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `instance_exec'
|
|
101
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `block in run'
|
|
102
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `block in with_around_and_singleton_context_hooks'
|
|
103
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `block in with_around_example_hooks'
|
|
104
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `block in run'
|
|
105
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:618:in `block in run_around_example_hooks_for'
|
|
106
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
|
107
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-wait-0.0.8/lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
|
108
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
|
109
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
|
110
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:389:in `execute_with'
|
|
111
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:620:in `block (2 levels) in run_around_example_hooks_for'
|
|
112
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
|
113
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:621:in `run_around_example_hooks_for'
|
|
114
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `run'
|
|
115
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `with_around_example_hooks'
|
|
116
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `with_around_and_singleton_context_hooks'
|
|
117
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:233:in `run'
|
|
118
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:581:in `block in run_examples'
|
|
119
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `map'
|
|
120
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `run_examples'
|
|
121
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:543:in `run'
|
|
122
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `block in run'
|
|
123
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `map'
|
|
124
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `run'
|
|
125
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (3 levels) in run_specs'
|
|
126
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `map'
|
|
127
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (2 levels) in run_specs'
|
|
128
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/configuration.rb:1680:in `with_suite_hooks'
|
|
129
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:114:in `block in run_specs'
|
|
130
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/reporter.rb:77:in `report'
|
|
131
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:113:in `run_specs'
|
|
132
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:89:in `run'
|
|
133
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:73:in `run'
|
|
134
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:41:in `invoke'
|
|
135
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/exe/rspec:4:in `<top (required)>'
|
|
136
|
-
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `load'
|
|
137
|
-
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `<main>'
|
|
138
|
-
I, [2016-02-08T16:22:10.603871 #22300] INFO -- : Rendered dummy/active_record_after_rollback.html.erb within layouts/application (6.2ms)
|
|
139
|
-
I, [2016-02-08T16:22:10.604924 #22300] INFO -- : Completed 200 OK in 150ms (Views: 104.9ms | ActiveRecord: 1.3ms)
|
|
140
|
-
I, [2016-02-08T16:22:10.612008 #22300] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
141
|
-
I, [2016-02-08T16:22:10.613405 #22300] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
|
142
|
-
D, [2016-02-08T16:22:10.614171 #22300] DEBUG -- : [1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
143
|
-
D, [2016-02-08T16:22:10.615119 #22300] DEBUG -- : [1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
|
|
144
|
-
D, [2016-02-08T16:22:10.615514 #22300] DEBUG -- : [1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
|
145
|
-
E, [2016-02-08T16:22:10.620808 #22300] ERROR -- : after_commit (AirbrakeTestError)
|
|
146
|
-
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:48:in `raise_error_after_commit'
|
|
147
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:375:in `_run__328253211629888034__commit__callbacks'
|
|
148
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
149
|
-
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rails/active_record.rb:31:in `run_callbacks'
|
|
150
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:298:in `committed!'
|
|
151
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:147:in `block in commit_records'
|
|
152
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:145:in `each'
|
|
153
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:145:in `commit_records'
|
|
154
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:181:in `perform_commit'
|
|
155
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/transaction.rb:120:in `commit'
|
|
156
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:237:in `commit_transaction'
|
|
157
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `within_new_transaction'
|
|
158
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `transaction'
|
|
159
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:209:in `transaction'
|
|
160
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:327:in `with_transaction_returning_status'
|
|
161
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:270:in `block in save'
|
|
162
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:285:in `rollback_active_record_state!'
|
|
163
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/transactions.rb:269:in `save'
|
|
164
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/persistence.rb:34:in `create'
|
|
165
|
-
/home/kyrylo/code/airbrake/airbrake/spec/apps/rails/dummy_app.rb:116:in `active_record_after_commit'
|
|
166
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
167
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:189:in `process_action'
|
|
168
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
169
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
170
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__478450324802621910__process_action__callbacks'
|
|
171
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
172
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
173
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
174
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
175
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `block in instrument'
|
|
176
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
177
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/notifications.rb:159:in `instrument'
|
|
178
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
179
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
180
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
181
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/base.rb:136:in `process'
|
|
182
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/abstract_controller/rendering.rb:44:in `process'
|
|
183
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:195:in `dispatch'
|
|
184
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
185
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_controller/metal.rb:231:in `block in action'
|
|
186
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
|
187
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:50:in `call'
|
|
188
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
189
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `each'
|
|
190
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/journey/router.rb:59:in `call'
|
|
191
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
192
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:35:in `block in call'
|
|
193
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `catch'
|
|
194
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/warden-1.2.4/lib/warden/manager.rb:34:in `call'
|
|
195
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/etag.rb:23:in `call'
|
|
196
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/conditionalget.rb:25:in `call'
|
|
197
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/head.rb:11:in `call'
|
|
198
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
199
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
200
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:225:in `context'
|
|
201
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/session/abstract/id.rb:220:in `call'
|
|
202
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
|
203
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/query_cache.rb:36:in `call'
|
|
204
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activerecord-4.0.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
|
205
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
206
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:373:in `_run__1586469104705807260__call__callbacks'
|
|
207
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
208
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
209
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
210
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
211
|
-
/home/kyrylo/code/airbrake/airbrake/lib/airbrake/rack/middleware.rb:22:in `call'
|
|
212
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
213
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
214
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:38:in `call_app'
|
|
215
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/rack/logger.rb:22:in `call'
|
|
216
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
217
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/methodoverride.rb:21:in `call'
|
|
218
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/runtime.rb:17:in `call'
|
|
219
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/activesupport-4.0.13/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
|
220
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/lock.rb:17:in `call'
|
|
221
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/actionpack-4.0.13/lib/action_dispatch/middleware/static.rb:84:in `call'
|
|
222
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-1.5.5/lib/rack/sendfile.rb:112:in `call'
|
|
223
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/engine.rb:511:in `call'
|
|
224
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/railties-4.0.13/lib/rails/application.rb:97:in `call'
|
|
225
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'
|
|
226
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'
|
|
227
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'
|
|
228
|
-
/opt/rubies/ruby-2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
|
229
|
-
/home/kyrylo/code/airbrake/airbrake/spec/integration/rails/rails_spec.rb:79:in `block (3 levels) in <top (required)>'
|
|
230
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `instance_exec'
|
|
231
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:236:in `block in run'
|
|
232
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `block in with_around_and_singleton_context_hooks'
|
|
233
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `block in with_around_example_hooks'
|
|
234
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `block in run'
|
|
235
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:618:in `block in run_around_example_hooks_for'
|
|
236
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
|
237
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-wait-0.0.8/lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
|
238
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
|
239
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:424:in `instance_exec'
|
|
240
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:389:in `execute_with'
|
|
241
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:620:in `block (2 levels) in run_around_example_hooks_for'
|
|
242
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:319:in `call'
|
|
243
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:621:in `run_around_example_hooks_for'
|
|
244
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/hooks.rb:478:in `run'
|
|
245
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:434:in `with_around_example_hooks'
|
|
246
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:477:in `with_around_and_singleton_context_hooks'
|
|
247
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example.rb:233:in `run'
|
|
248
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:581:in `block in run_examples'
|
|
249
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `map'
|
|
250
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:577:in `run_examples'
|
|
251
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:543:in `run'
|
|
252
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `block in run'
|
|
253
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `map'
|
|
254
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/example_group.rb:544:in `run'
|
|
255
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (3 levels) in run_specs'
|
|
256
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `map'
|
|
257
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:115:in `block (2 levels) in run_specs'
|
|
258
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/configuration.rb:1680:in `with_suite_hooks'
|
|
259
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:114:in `block in run_specs'
|
|
260
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/reporter.rb:77:in `report'
|
|
261
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:113:in `run_specs'
|
|
262
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:89:in `run'
|
|
263
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:73:in `run'
|
|
264
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/lib/rspec/core/runner.rb:41:in `invoke'
|
|
265
|
-
/home/kyrylo/.gem/ruby/2.3.0/gems/rspec-core-3.4.1/exe/rspec:4:in `<top (required)>'
|
|
266
|
-
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `load'
|
|
267
|
-
/home/kyrylo/.gem/ruby/2.3.0/bin/rspec:23:in `<main>'
|
|
268
|
-
I, [2016-02-08T16:22:10.643446 #22300] INFO -- : Rendered dummy/active_record_after_commit.html.erb within layouts/application (0.4ms)
|
|
269
|
-
I, [2016-02-08T16:22:10.643898 #22300] INFO -- : Completed 200 OK in 30ms (Views: 1.7ms | ActiveRecord: 0.4ms)
|
|
270
|
-
I, [2016-02-08T16:22:10.649600 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
271
|
-
I, [2016-02-08T16:22:10.650768 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
272
|
-
I, [2016-02-08T16:22:10.651156 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
273
|
-
F, [2016-02-08T16:22:10.655747 #22300] FATAL -- :
|
|
274
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
275
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
I, [2016-02-08T16:22:10.673055 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
279
|
-
I, [2016-02-08T16:22:10.674138 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
280
|
-
I, [2016-02-08T16:22:10.674637 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
281
|
-
F, [2016-02-08T16:22:10.679589 #22300] FATAL -- :
|
|
282
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
283
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
I, [2016-02-08T16:22:10.695757 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
287
|
-
I, [2016-02-08T16:22:10.696678 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
288
|
-
I, [2016-02-08T16:22:10.697068 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
289
|
-
F, [2016-02-08T16:22:10.701592 #22300] FATAL -- :
|
|
290
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
291
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
I, [2016-02-08T16:22:10.832026 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
295
|
-
I, [2016-02-08T16:22:10.833324 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
296
|
-
I, [2016-02-08T16:22:10.833938 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
297
|
-
F, [2016-02-08T16:22:10.858083 #22300] FATAL -- :
|
|
298
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
299
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
I, [2016-02-08T16:22:10.863153 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
303
|
-
I, [2016-02-08T16:22:10.864295 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
304
|
-
I, [2016-02-08T16:22:10.864704 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
305
|
-
F, [2016-02-08T16:22:10.870422 #22300] FATAL -- :
|
|
306
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
307
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
I, [2016-02-08T16:22:10.884967 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
311
|
-
I, [2016-02-08T16:22:10.886018 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
312
|
-
I, [2016-02-08T16:22:10.886477 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
313
|
-
F, [2016-02-08T16:22:10.893455 #22300] FATAL -- :
|
|
314
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
315
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
I, [2016-02-08T16:22:10.999805 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:10 +0200
|
|
319
|
-
I, [2016-02-08T16:22:11.001435 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
320
|
-
I, [2016-02-08T16:22:11.001999 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
321
|
-
F, [2016-02-08T16:22:11.024351 #22300] FATAL -- :
|
|
322
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
323
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
I, [2016-02-08T16:22:11.029458 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
327
|
-
I, [2016-02-08T16:22:11.030541 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
328
|
-
I, [2016-02-08T16:22:11.030984 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
329
|
-
F, [2016-02-08T16:22:11.036119 #22300] FATAL -- :
|
|
330
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
331
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
I, [2016-02-08T16:22:11.055985 #22300] INFO -- : Started GET "/" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
335
|
-
I, [2016-02-08T16:22:11.057398 #22300] INFO -- : Processing by DummyController#index as HTML
|
|
336
|
-
I, [2016-02-08T16:22:11.059094 #22300] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
|
337
|
-
I, [2016-02-08T16:22:11.059621 #22300] INFO -- : Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
338
|
-
I, [2016-02-08T16:22:11.062741 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
339
|
-
I, [2016-02-08T16:22:11.063682 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
340
|
-
I, [2016-02-08T16:22:11.063988 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
341
|
-
F, [2016-02-08T16:22:11.069168 #22300] FATAL -- :
|
|
342
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
343
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
I, [2016-02-08T16:22:11.184787 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
347
|
-
I, [2016-02-08T16:22:11.187603 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
|
348
|
-
I, [2016-02-08T16:22:11.187782 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
349
|
-
I, [2016-02-08T16:22:11.222821 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
|
350
|
-
I, [2016-02-08T16:22:11.223924 #22300] INFO -- : Completed 200 OK in 36ms (Views: 28.0ms | ActiveRecord: 0.0ms)
|
|
351
|
-
I, [2016-02-08T16:22:11.234302 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
352
|
-
I, [2016-02-08T16:22:11.235749 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
|
353
|
-
I, [2016-02-08T16:22:11.235834 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
354
|
-
I, [2016-02-08T16:22:11.244310 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.7ms)
|
|
355
|
-
I, [2016-02-08T16:22:11.260115 #22300] INFO -- : Completed 200 OK in 24ms (Views: 17.2ms | ActiveRecord: 0.0ms)
|
|
356
|
-
I, [2016-02-08T16:22:11.265371 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
357
|
-
I, [2016-02-08T16:22:11.266582 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
|
358
|
-
I, [2016-02-08T16:22:11.266644 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
359
|
-
I, [2016-02-08T16:22:11.273778 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.9ms)
|
|
360
|
-
I, [2016-02-08T16:22:11.289281 #22300] INFO -- : Completed 200 OK in 23ms (Views: 17.5ms | ActiveRecord: 0.0ms)
|
|
361
|
-
I, [2016-02-08T16:22:11.294524 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
362
|
-
I, [2016-02-08T16:22:11.295688 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
|
363
|
-
I, [2016-02-08T16:22:11.295749 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
364
|
-
I, [2016-02-08T16:22:11.321959 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
|
365
|
-
I, [2016-02-08T16:22:11.322364 #22300] INFO -- : Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
|
366
|
-
I, [2016-02-08T16:22:11.329365 #22300] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
367
|
-
I, [2016-02-08T16:22:11.331036 #22300] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
|
368
|
-
I, [2016-02-08T16:22:11.331129 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
369
|
-
I, [2016-02-08T16:22:11.337407 #22300] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
|
370
|
-
I, [2016-02-08T16:22:11.348193 #22300] INFO -- : Completed 200 OK in 17ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
|
371
|
-
I, [2016-02-08T16:22:11.353654 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
372
|
-
I, [2016-02-08T16:22:11.354813 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
373
|
-
I, [2016-02-08T16:22:11.354883 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
374
|
-
I, [2016-02-08T16:22:11.355233 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
375
|
-
F, [2016-02-08T16:22:11.359603 #22300] FATAL -- :
|
|
376
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
377
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
I, [2016-02-08T16:22:11.465786 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
381
|
-
I, [2016-02-08T16:22:11.467911 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
382
|
-
I, [2016-02-08T16:22:11.468089 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
383
|
-
I, [2016-02-08T16:22:11.469004 #22300] INFO -- : Completed 500 Internal Server Error in 1ms
|
|
384
|
-
F, [2016-02-08T16:22:11.489499 #22300] FATAL -- :
|
|
385
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
386
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
I, [2016-02-08T16:22:11.493316 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
390
|
-
I, [2016-02-08T16:22:11.494303 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
391
|
-
I, [2016-02-08T16:22:11.494360 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
392
|
-
I, [2016-02-08T16:22:11.494672 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
393
|
-
F, [2016-02-08T16:22:11.498443 #22300] FATAL -- :
|
|
394
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
395
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
I, [2016-02-08T16:22:11.606916 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
399
|
-
I, [2016-02-08T16:22:11.609423 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
400
|
-
I, [2016-02-08T16:22:11.609608 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
401
|
-
I, [2016-02-08T16:22:11.610526 #22300] INFO -- : Completed 500 Internal Server Error in 1ms
|
|
402
|
-
F, [2016-02-08T16:22:11.629564 #22300] FATAL -- :
|
|
403
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
404
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
I, [2016-02-08T16:22:11.634992 #22300] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
408
|
-
I, [2016-02-08T16:22:11.636292 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
409
|
-
I, [2016-02-08T16:22:11.636380 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
410
|
-
I, [2016-02-08T16:22:11.636858 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
411
|
-
F, [2016-02-08T16:22:11.643724 #22300] FATAL -- :
|
|
412
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
413
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
I, [2016-02-08T16:22:11.661165 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
417
|
-
I, [2016-02-08T16:22:11.665071 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
418
|
-
I, [2016-02-08T16:22:11.665182 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
419
|
-
I, [2016-02-08T16:22:11.681342 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
420
|
-
I, [2016-02-08T16:22:11.681853 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
|
421
|
-
I, [2016-02-08T16:22:11.686532 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
422
|
-
I, [2016-02-08T16:22:11.687596 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
423
|
-
I, [2016-02-08T16:22:11.687672 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
424
|
-
I, [2016-02-08T16:22:11.701625 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
425
|
-
I, [2016-02-08T16:22:11.701985 #22300] INFO -- : Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
|
426
|
-
I, [2016-02-08T16:22:11.706454 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
427
|
-
I, [2016-02-08T16:22:11.707845 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
428
|
-
I, [2016-02-08T16:22:11.707922 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
429
|
-
I, [2016-02-08T16:22:11.723888 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
430
|
-
I, [2016-02-08T16:22:11.724214 #22300] INFO -- : Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
431
|
-
I, [2016-02-08T16:22:11.728508 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
432
|
-
I, [2016-02-08T16:22:11.729481 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
433
|
-
I, [2016-02-08T16:22:11.729539 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
434
|
-
I, [2016-02-08T16:22:11.745749 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
435
|
-
I, [2016-02-08T16:22:11.746174 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
436
|
-
I, [2016-02-08T16:22:11.751319 #22300] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
437
|
-
I, [2016-02-08T16:22:11.752341 #22300] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
|
438
|
-
I, [2016-02-08T16:22:11.752403 #22300] INFO -- : Parameters: {"foo"=>"bar"}
|
|
439
|
-
I, [2016-02-08T16:22:11.766467 #22300] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
|
440
|
-
I, [2016-02-08T16:22:11.766832 #22300] INFO -- : Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
441
|
-
I, [2016-02-08T16:22:11.771438 #22300] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
442
|
-
I, [2016-02-08T16:22:11.772526 #22300] INFO -- : Processing by DummyController#resque as HTML
|
|
443
|
-
I, [2016-02-08T16:22:11.789573 #22300] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.4ms)
|
|
444
|
-
I, [2016-02-08T16:22:11.789972 #22300] INFO -- : Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
445
|
-
I, [2016-02-08T16:22:11.801375 #22300] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-02-08 16:22:11 +0200
|
|
446
|
-
I, [2016-02-08T16:22:11.802697 #22300] INFO -- : Processing by DummyController#crash as HTML
|
|
447
|
-
I, [2016-02-08T16:22:11.803059 #22300] INFO -- : Completed 500 Internal Server Error in 0ms
|
|
448
|
-
F, [2016-02-08T16:22:11.809247 #22300] FATAL -- :
|
|
449
|
-
AirbrakeTestError (AirbrakeTestError):
|
|
450
|
-
lib/airbrake/rack/middleware.rb:22:in `call'
|
|
451
|
-
|
|
452
|
-
|