airbrake 8.3.1 → 8.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82116cbc8eec2d17547206dc0f644ac974b2df10
4
- data.tar.gz: a17a8339ced1ac6d9f89aa87cb60a438b5264c58
3
+ metadata.gz: dc41a5d64d0b2b7e369c100a43f912d5c052ae70
4
+ data.tar.gz: 7176ef88810063c17fe77cd09430ba8b8df497f3
5
5
  SHA512:
6
- metadata.gz: 4329f1e59fedbc6769f4f4491b12484b63f50538ff53db3d7f72d693f96f041baaf7ecb576579c9c47e0eff17cb6f4852ca728e08547fa3895205fa9a415003a
7
- data.tar.gz: bff45ecb23e4fbb8076dd69a10b5be16a3e6659258d4cc92bb41c923d274a5c9ddcd4ed68d09228c64c031aeecfd5cd05e3b8367e83e32296a51bb794e3682f6
6
+ metadata.gz: f54e79d7a3ded37ab3faa8cd8b5fb7dcd305c739e9e0aa0fed7c8d29d8fc4beee5eee9128f5e9f0cc85830c20c03aebffac0243f37f7533bc4018f81c6db4cec
7
+ data.tar.gz: 3b34f14eb132c84b1b59ec2308ccc9e0883a3bde794688111d91490d9bca04ed0afee45e2a012db5fe6f6bdfab871c3102eeff968e472416b14b614c68f99494
@@ -10,18 +10,29 @@ module Airbrake
10
10
  payload = event.payload
11
11
 
12
12
  routes.each do |route, method|
13
+ next if (groups = build_groups(payload)).none?
14
+
13
15
  Airbrake.notify_performance_breakdown(
14
16
  method: method,
15
17
  route: route,
16
18
  response_type: payload[:format],
17
- groups: {
18
- db: payload[:db_runtime].to_i,
19
- view: payload[:view_runtime].to_i
20
- },
19
+ groups: groups,
21
20
  start_time: event.time
22
21
  )
23
22
  end
24
23
  end
24
+
25
+ def build_groups(payload)
26
+ groups = {}
27
+
28
+ db_runtime = payload[:db_runtime] || 0
29
+ groups[:db] = db_runtime if db_runtime > 0
30
+
31
+ view_runtime = payload[:view_runtime] || 0
32
+ groups[:view] = view_runtime if view_runtime > 0
33
+
34
+ groups
35
+ end
25
36
  end
26
37
  end
27
38
  end
@@ -1,5 +1,5 @@
1
1
  # We use Semantic Versioning v2.0.0
2
2
  # More information: http://semver.org/
3
3
  module Airbrake
4
- AIRBRAKE_VERSION = '8.3.1'.freeze
4
+ AIRBRAKE_VERSION = '8.3.2'.freeze
5
5
  end
@@ -30,6 +30,7 @@ class DummyApp < Rails::Application
30
30
  routes.append do
31
31
  get '/' => 'dummy#index'
32
32
  get '/crash' => 'dummy#crash'
33
+ get '/breakdown' => 'dummy#breakdown'
33
34
  get '/notify_airbrake_helper' => 'dummy#notify_airbrake_helper'
34
35
  get '/notify_airbrake_sync_helper' => 'dummy#notify_airbrake_sync_helper'
35
36
  get '/active_record_after_commit' => 'dummy#active_record_after_commit'
@@ -100,7 +101,8 @@ class DummyController < ActionController::Base
100
101
  'dummy/active_record_after_rollback.html.erb' => 'active_record_after_rollback',
101
102
  'dummy/active_job.html.erb' => 'active_job',
102
103
  'dummy/resque.html.erb' => 'resque',
103
- 'dummy/delayed_job.html.erb' => 'delayed_job'
104
+ 'dummy/delayed_job.html.erb' => 'delayed_job',
105
+ 'dummy/breakdown.html.erb' => 'breakdown'
104
106
  )
105
107
  ]
106
108
 
@@ -111,6 +113,11 @@ class DummyController < ActionController::Base
111
113
  raise AirbrakeTestError
112
114
  end
113
115
 
116
+ def breakdown
117
+ Book.create(title: 'breakdown')
118
+ Book.all
119
+ end
120
+
114
121
  def notify_airbrake_helper
115
122
  notify_airbrake(AirbrakeTestError.new)
116
123
  end
@@ -1470,3 +1470,901 @@ Diff:
1470
1470
  lib/airbrake/rack/middleware.rb:21:in `call'
1471
1471
 
1472
1472
 
1473
+ Connecting to database specified by DATABASE_URL
1474
+  (2.5ms) select sqlite_version(*)
1475
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1476
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1477
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1478
+ Connecting to database specified by DATABASE_URL
1479
+  (4.3ms) select sqlite_version(*)
1480
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1481
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1482
+  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1483
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:24:28 +0200
1484
+ Processing by DummyController#crash as HTML
1485
+  (0.0ms) begin transaction
1486
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1487
+  (0.0ms) commit transaction
1488
+ #<AirbrakeTestError: after_commit>
1489
+ Completed 500 Internal Server Error in 13.1ms
1490
+
1491
+ AirbrakeTestError (AirbrakeTestError):
1492
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1493
+ lib/airbrake/rack/middleware.rb:21:in `call'
1494
+
1495
+
1496
+ Connecting to database specified by DATABASE_URL
1497
+  (0.9ms) select sqlite_version(*)
1498
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1499
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1500
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1501
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:25:40 +0200
1502
+ Processing by DummyController#crash as HTML
1503
+  (0.0ms) begin transaction
1504
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1505
+  (0.0ms) commit transaction
1506
+ #<AirbrakeTestError: after_commit>
1507
+ Completed 500 Internal Server Error in 10.7ms
1508
+
1509
+ AirbrakeTestError (AirbrakeTestError):
1510
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1511
+ lib/airbrake/rack/middleware.rb:21:in `call'
1512
+
1513
+
1514
+ Connecting to database specified by DATABASE_URL
1515
+  (0.9ms) select sqlite_version(*)
1516
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1517
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1518
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1519
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:27:20 +0200
1520
+ Processing by DummyController#crash as HTML
1521
+  (0.0ms) begin transaction
1522
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1523
+  (0.0ms) commit transaction
1524
+ #<AirbrakeTestError: after_commit>
1525
+ Completed 500 Internal Server Error in 11.2ms
1526
+
1527
+ AirbrakeTestError (AirbrakeTestError):
1528
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1529
+ lib/airbrake/rack/middleware.rb:21:in `call'
1530
+
1531
+
1532
+ Connecting to database specified by DATABASE_URL
1533
+  (1.0ms) select sqlite_version(*)
1534
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1535
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1536
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1537
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:28:18 +0200
1538
+ Processing by DummyController#crash as HTML
1539
+  (0.0ms) begin transaction
1540
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1541
+  (0.0ms) commit transaction
1542
+ #<AirbrakeTestError: after_commit>
1543
+ Completed 500 Internal Server Error in 10.5ms
1544
+
1545
+ AirbrakeTestError (AirbrakeTestError):
1546
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1547
+ lib/airbrake/rack/middleware.rb:21:in `call'
1548
+
1549
+
1550
+ Connecting to database specified by DATABASE_URL
1551
+  (0.9ms) select sqlite_version(*)
1552
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1553
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1554
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1555
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:28:34 +0200
1556
+ Processing by DummyController#breakdown as HTML
1557
+  (0.0ms) begin transaction
1558
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
1559
+  (0.0ms) commit transaction
1560
+ #<AirbrakeTestError: after_commit>
1561
+ Completed 500 Internal Server Error in 18.8ms
1562
+
1563
+ ActionView::MissingTemplate (Missing template dummy/breakdown with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1564
+ * "layouts/application.html.erb, dummy/index.html.erb, dummy/notify_airbrake_helper.html.erb, dummy/notify_airbrake_sync_helper.html.erb, dummy/active_record_after_commit.html.erb, dummy/active_record_after_rollback.html.erb, dummy/active_job.html.erb, dummy/resque.html.erb, dummy/delayed_job.html.erb"
1565
+ ):
1566
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1567
+ lib/airbrake/rack/middleware.rb:21:in `call'
1568
+
1569
+
1570
+ Connecting to database specified by DATABASE_URL
1571
+  (0.9ms) select sqlite_version(*)
1572
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1573
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1574
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1575
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:28:44 +0200
1576
+ Processing by DummyController#breakdown as HTML
1577
+  (0.0ms) begin transaction
1578
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
1579
+  (0.0ms) commit transaction
1580
+ #<AirbrakeTestError: after_commit>
1581
+ Book Load (0.1ms) SELECT "books".* FROM "books"
1582
+  (0.0ms) begin transaction
1583
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
1584
+  (0.0ms) commit transaction
1585
+ #<AirbrakeTestError: after_commit>
1586
+ Completed 500 Internal Server Error in 28584.6ms
1587
+
1588
+ ActionView::MissingTemplate (Missing template dummy/breakdown with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1589
+ * "layouts/application.html.erb, dummy/index.html.erb, dummy/notify_airbrake_helper.html.erb, dummy/notify_airbrake_sync_helper.html.erb, dummy/active_record_after_commit.html.erb, dummy/active_record_after_rollback.html.erb, dummy/active_job.html.erb, dummy/resque.html.erb, dummy/delayed_job.html.erb"
1590
+ ):
1591
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1592
+ lib/airbrake/rack/middleware.rb:21:in `call'
1593
+
1594
+
1595
+ Connecting to database specified by DATABASE_URL
1596
+  (3.3ms) select sqlite_version(*)
1597
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1598
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1599
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1600
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:30:04 +0200
1601
+ Processing by DummyController#breakdown as HTML
1602
+  (0.0ms) begin transaction
1603
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
1604
+  (0.0ms) commit transaction
1605
+ #<AirbrakeTestError: after_commit>
1606
+ Book Load (0.0ms) SELECT "books".* FROM "books"
1607
+ Rendered dummy/breakdown.html.erb within layouts/application (2.8ms)
1608
+ Completed 200 OK in 21.5ms (Views: 9.0ms | ActiveRecord: 0.3ms)
1609
+ Connecting to database specified by DATABASE_URL
1610
+  (0.9ms) select sqlite_version(*)
1611
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1612
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1613
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1614
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:30:35 +0200
1615
+ Processing by DummyController#crash as HTML
1616
+  (0.0ms) begin transaction
1617
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1618
+  (0.0ms) commit transaction
1619
+ #<AirbrakeTestError: after_commit>
1620
+ Completed 500 Internal Server Error in 28.0ms
1621
+ Connecting to database specified by DATABASE_URL
1622
+  (0.9ms) select sqlite_version(*)
1623
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1624
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1625
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1626
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:46 +0200
1627
+ Processing by DummyController#notify_airbrake_helper as HTML
1628
+ Parameters: {"foo"=>"bar"}
1629
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.9ms)
1630
+ Completed 200 OK in 19.1ms (Views: 14.0ms | ActiveRecord: 0.0ms)
1631
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:48 +0200
1632
+ Processing by DummyController#notify_airbrake_helper as HTML
1633
+ Parameters: {"foo"=>"bar"}
1634
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1635
+ Completed 200 OK in 13.8ms (Views: 8.6ms | ActiveRecord: 0.0ms)
1636
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:50 +0200
1637
+ Processing by DummyController#notify_airbrake_helper as HTML
1638
+ Parameters: {"foo"=>"bar"}
1639
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1640
+ Completed 200 OK in 16.5ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1641
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:52 +0200
1642
+ Processing by DummyController#notify_airbrake_helper as HTML
1643
+ Parameters: {"foo"=>"bar"}
1644
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1645
+ Completed 200 OK in 14.7ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1646
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:54 +0200
1647
+ Processing by DummyController#notify_airbrake_helper as HTML
1648
+ Parameters: {"foo"=>"bar"}
1649
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1650
+ Completed 200 OK in 15.4ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1651
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:56 +0200
1652
+ Processing by DummyController#notify_airbrake_helper as HTML
1653
+ Parameters: {"foo"=>"bar"}
1654
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1655
+ Completed 200 OK in 17.3ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1656
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:30:58 +0200
1657
+ Processing by DummyController#crash as HTML
1658
+ Parameters: {"foo"=>"bar"}
1659
+  (0.0ms) begin transaction
1660
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1661
+  (0.0ms) commit transaction
1662
+ #<AirbrakeTestError: after_commit>
1663
+ Completed 500 Internal Server Error in 34.1ms
1664
+
1665
+ AirbrakeTestError (AirbrakeTestError):
1666
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1667
+ lib/airbrake/rack/middleware.rb:21:in `call'
1668
+
1669
+
1670
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:00 +0200
1671
+ Processing by DummyController#crash as HTML
1672
+ Parameters: {"foo"=>"bar"}
1673
+  (0.1ms) begin transaction
1674
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1675
+  (0.0ms) commit transaction
1676
+ #<AirbrakeTestError: after_commit>
1677
+ Completed 500 Internal Server Error in 19.1ms
1678
+
1679
+ AirbrakeTestError (AirbrakeTestError):
1680
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1681
+ lib/airbrake/rack/middleware.rb:21:in `call'
1682
+
1683
+
1684
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:02 +0200
1685
+ Processing by DummyController#crash as HTML
1686
+ Parameters: {"foo"=>"bar"}
1687
+  (0.0ms) begin transaction
1688
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1689
+  (0.0ms) commit transaction
1690
+ #<AirbrakeTestError: after_commit>
1691
+ Completed 500 Internal Server Error in 19.2ms
1692
+
1693
+ AirbrakeTestError (AirbrakeTestError):
1694
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1695
+ lib/airbrake/rack/middleware.rb:21:in `call'
1696
+
1697
+
1698
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:04 +0200
1699
+ Processing by DummyController#crash as HTML
1700
+ Parameters: {"foo"=>"bar"}
1701
+  (0.0ms) begin transaction
1702
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1703
+  (0.0ms) commit transaction
1704
+ #<AirbrakeTestError: after_commit>
1705
+ Completed 500 Internal Server Error in 22.0ms
1706
+
1707
+ AirbrakeTestError (AirbrakeTestError):
1708
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1709
+ lib/airbrake/rack/middleware.rb:21:in `call'
1710
+
1711
+
1712
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:06 +0200
1713
+ Processing by DummyController#crash as HTML
1714
+ Parameters: {"foo"=>"bar"}
1715
+  (0.0ms) begin transaction
1716
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1717
+  (0.0ms) commit transaction
1718
+ #<AirbrakeTestError: after_commit>
1719
+ Completed 500 Internal Server Error in 21.2ms
1720
+
1721
+ AirbrakeTestError (AirbrakeTestError):
1722
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1723
+ lib/airbrake/rack/middleware.rb:21:in `call'
1724
+
1725
+
1726
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:08 +0200
1727
+ Processing by DummyController#crash as HTML
1728
+ Parameters: {"foo"=>"bar"}
1729
+  (0.0ms) begin transaction
1730
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1731
+  (0.0ms) commit transaction
1732
+ #<AirbrakeTestError: after_commit>
1733
+ Completed 500 Internal Server Error in 20.2ms
1734
+
1735
+ AirbrakeTestError (AirbrakeTestError):
1736
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1737
+ lib/airbrake/rack/middleware.rb:21:in `call'
1738
+
1739
+
1740
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:10 +0200
1741
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1742
+ Parameters: {"foo"=>"bar"}
1743
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1744
+ Completed 200 OK in 14.4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1745
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:12 +0200
1746
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1747
+ Parameters: {"foo"=>"bar"}
1748
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1749
+ Completed 200 OK in 16.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1750
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:14 +0200
1751
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1752
+ Parameters: {"foo"=>"bar"}
1753
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1754
+ Completed 200 OK in 15.0ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1755
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:16 +0200
1756
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1757
+ Parameters: {"foo"=>"bar"}
1758
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1759
+ Completed 200 OK in 13.4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1760
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:18 +0200
1761
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1762
+ Parameters: {"foo"=>"bar"}
1763
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1764
+ Completed 200 OK in 16.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1765
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:31:20 +0200
1766
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
1767
+ Parameters: {"foo"=>"bar"}
1768
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1769
+ Completed 200 OK in 14.9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1770
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:22 +0200
1771
+ Processing by DummyController#crash as HTML
1772
+  (0.0ms) begin transaction
1773
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1774
+  (0.0ms) commit transaction
1775
+ #<AirbrakeTestError: after_commit>
1776
+ Completed 500 Internal Server Error in 21.0ms
1777
+
1778
+ AirbrakeTestError (AirbrakeTestError):
1779
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1780
+ lib/airbrake/rack/middleware.rb:21:in `call'
1781
+
1782
+
1783
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:25 +0200
1784
+ Processing by DummyController#crash as HTML
1785
+  (0.0ms) begin transaction
1786
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1787
+  (0.0ms) commit transaction
1788
+ #<AirbrakeTestError: after_commit>
1789
+ Completed 500 Internal Server Error in 21.6ms
1790
+
1791
+ AirbrakeTestError (AirbrakeTestError):
1792
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1793
+ lib/airbrake/rack/middleware.rb:21:in `call'
1794
+
1795
+
1796
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:27 +0200
1797
+ Processing by DummyController#crash as HTML
1798
+  (0.1ms) begin transaction
1799
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1800
+  (0.1ms) commit transaction
1801
+ #<AirbrakeTestError: after_commit>
1802
+ Completed 500 Internal Server Error in 20.7ms
1803
+
1804
+ AirbrakeTestError (AirbrakeTestError):
1805
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1806
+ lib/airbrake/rack/middleware.rb:21:in `call'
1807
+
1808
+
1809
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:29 +0200
1810
+ Processing by DummyController#crash as HTML
1811
+  (0.0ms) begin transaction
1812
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1813
+  (0.0ms) commit transaction
1814
+ #<AirbrakeTestError: after_commit>
1815
+ Completed 500 Internal Server Error in 20.6ms
1816
+
1817
+ AirbrakeTestError (AirbrakeTestError):
1818
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1819
+ lib/airbrake/rack/middleware.rb:21:in `call'
1820
+
1821
+
1822
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:31 +0200
1823
+ Processing by DummyController#crash as HTML
1824
+  (0.1ms) begin transaction
1825
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1826
+  (0.0ms) commit transaction
1827
+ #<AirbrakeTestError: after_commit>
1828
+ Completed 500 Internal Server Error in 22.1ms
1829
+
1830
+ AirbrakeTestError (AirbrakeTestError):
1831
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1832
+ lib/airbrake/rack/middleware.rb:21:in `call'
1833
+
1834
+
1835
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:33 +0200
1836
+ Processing by DummyController#crash as HTML
1837
+  (0.0ms) begin transaction
1838
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1839
+  (0.1ms) commit transaction
1840
+ #<AirbrakeTestError: after_commit>
1841
+ Completed 500 Internal Server Error in 44.4ms
1842
+
1843
+ AirbrakeTestError (AirbrakeTestError):
1844
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1845
+ lib/airbrake/rack/middleware.rb:21:in `call'
1846
+
1847
+
1848
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:35 +0200
1849
+ Processing by DummyController#crash as HTML
1850
+  (0.0ms) begin transaction
1851
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1852
+  (0.0ms) commit transaction
1853
+ #<AirbrakeTestError: after_commit>
1854
+ Completed 500 Internal Server Error in 20.5ms
1855
+
1856
+ AirbrakeTestError (AirbrakeTestError):
1857
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1858
+ lib/airbrake/rack/middleware.rb:21:in `call'
1859
+
1860
+
1861
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:37 +0200
1862
+ Processing by DummyController#crash as HTML
1863
+  (0.0ms) begin transaction
1864
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1865
+  (0.0ms) commit transaction
1866
+ #<AirbrakeTestError: after_commit>
1867
+ Completed 500 Internal Server Error in 19.2ms
1868
+
1869
+ AirbrakeTestError (AirbrakeTestError):
1870
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1871
+ lib/airbrake/rack/middleware.rb:21:in `call'
1872
+
1873
+
1874
+ Started GET "/" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1875
+ Processing by DummyController#index as HTML
1876
+ Rendered dummy/index.html.erb within layouts/application (0.2ms)
1877
+ Completed 200 OK in 1.4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1878
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1879
+ Processing by DummyController#crash as HTML
1880
+  (0.0ms) begin transaction
1881
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1882
+  (0.0ms) commit transaction
1883
+ #<RSpec::Mocks::MockExpectationError: Airbrake received :notify with unexpected arguments
1884
+ expected: (an instance of Airbrake::Notice)
1885
+ got: (#<AirbrakeTestError: after_commit>)
1886
+ Diff:
1887
+ @@ -1,2 +1,2 @@
1888
+ -["an instance of Airbrake::Notice"]
1889
+ +[#<AirbrakeTestError: after_commit>]
1890
+ >
1891
+ Completed 500 Internal Server Error in 19.6ms
1892
+
1893
+ AirbrakeTestError (AirbrakeTestError):
1894
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1895
+ lib/airbrake/rack/middleware.rb:21:in `call'
1896
+
1897
+
1898
+ Started GET "/resque" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1899
+ Processing by DummyController#resque as HTML
1900
+ Rendered dummy/resque.html.erb within layouts/application (0.2ms)
1901
+ Completed 200 OK in 1.9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1902
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1903
+ Processing by DummyController#breakdown as HTML
1904
+  (0.0ms) begin transaction
1905
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
1906
+  (0.0ms) commit transaction
1907
+ #<AirbrakeTestError: after_commit>
1908
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
1909
+ Rendered dummy/breakdown.html.erb within layouts/application (0.2ms)
1910
+ Completed 200 OK in 7.9ms (Views: 1.0ms | ActiveRecord: 0.1ms)
1911
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1912
+ Processing by DummyController#crash as HTML
1913
+  (0.0ms) begin transaction
1914
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1915
+  (0.0ms) commit transaction
1916
+ #<AirbrakeTestError: after_commit>
1917
+ Completed 500 Internal Server Error in 4.8ms
1918
+
1919
+ AirbrakeTestError (AirbrakeTestError):
1920
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1921
+ lib/airbrake/rack/middleware.rb:21:in `call'
1922
+
1923
+
1924
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1925
+ Processing by DummyController#crash as HTML
1926
+  (0.0ms) begin transaction
1927
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1928
+  (0.0ms) commit transaction
1929
+ #<AirbrakeTestError: after_commit>
1930
+ Completed 500 Internal Server Error in 1.4ms
1931
+
1932
+ AirbrakeTestError (AirbrakeTestError):
1933
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1934
+ lib/airbrake/rack/middleware.rb:21:in `call'
1935
+
1936
+
1937
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1938
+ Processing by DummyController#delayed_job as HTML
1939
+ Completed 500 Internal Server Error in 13.1ms
1940
+
1941
+ RSpec::Mocks::MockExpectationError (Airbrake received :notify with unexpected arguments
1942
+ expected: (anything, {"job"=>hash_including("handler"=>"--- !ruby/struct:BangoJob\nbingo: bingo\nbongo: bongo\n")})
1943
+ got: (#<Airbrake::Notice:0x00007fc4adf37dd8 @config=#<Airbrake::Config:0x00007fc4af9b03e0 @proxy={}, @queue...ash=-2229606033541153460>]}>}, @truncator=#<Airbrake::Truncator:0x00007fc4aeb53018 @max_size=10000>>)
1944
+ Diff:
1945
+ @@ -1,4 +1,8 @@
1946
+ -["anything",
1947
+ - {"job"=>
1948
+ - hash_including("handler"=>"--- !ruby/struct:BangoJob\nbingo: bingo\nbongo: bongo\n")}]
1949
+ +[#<Airbrake::Notice:0x00007fc4adf37dd8 @config=#<Airbrake::Config:0x00007fc4af9b03e0 @proxy={}, @queue_size=100, @workers=5, @code_hunks=true, @logger=#<Logger:0x00007fc4af9b0368 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007fc4af9b0318 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x00007fc4af9b02c8 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/dev/null", @dev=#<File:/dev/null>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x00007fc4af9b0250>>>, @project_id=113743, @project_key="fd04e13d806a90f96614ad8e529b2822", @host="https://api.airbrake.io", @ignore_environments=[], @timeout=nil, @blacklist_keys=[], @whitelist_keys=[], @root_directory="/Users/kyrylo/Code/airbrake/airbrake/gemfiles", @versions={}, @performance_stats=false, @performance_stats_flush_period=1, @app_version="1.2.3", @endpoint=#<URI::HTTPS https://api.airbrake.io/api/v3/projects/113743/notices>>, @payload={:errors=>[{:type=>"AirbrakeTestError", :message=>"delayed_job error", :backtrace=>[{:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/dummy_app.rb", :line=>87, :function=>"perform"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>81, :function=>"block in invoke_job"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/delayed_job.rb", :line=>10, :function=>"block (2 levels) in <class:Airbrake>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>79, :function=>"block (2 levels) in add"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>61, :function=>"block in initialize"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>79, :function=>"block in add"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>66, :function=>"execute"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>40, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>78, :function=>"invoke_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>19, :function=>"block (2 levels) in enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>61, :function=>"block in initialize"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>66, :function=>"execute"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>40, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>17, :function=>"block in enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>16, :function=>"tap"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>16, :function=>"enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>12, :function=>"enqueue"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/dummy_app.rb", :line=>149, :function=>"delayed_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/implicit_render.rb", :line=>4, :function=>"send_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/base.rb", :line=>167, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rendering.rb", :line=>10, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/callbacks.rb", :line=>18, :function=>"block in process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>403, :function=>"_run__1923159818643615992__process_action__2805766107018176063__callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"__run_callback"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>385, :function=>"_run_process_action_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>81, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/callbacks.rb", :line=>17, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rescue.rb", :line=>29, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/instrumentation.rb", :line=>30, :function=>"block in process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications.rb", :line=>123, :function=>"block in instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications/instrumenter.rb", :line=>20, :function=>"instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications.rb", :line=>123, :function=>"instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/instrumentation.rb", :line=>29, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/params_wrapper.rb", :line=>207, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/railties/controller_runtime.rb", :line=>18, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/base.rb", :line=>121, :function=>"process"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/rendering.rb", :line=>46, :function=>"process"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal.rb", :line=>203, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rack_delegation.rb", :line=>14, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal.rb", :line=>246, :function=>"block in action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>73, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>36, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>68, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>56, :function=>"each"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>56, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>608, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>36, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>35, :function=>"catch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>35, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/best_standards_support.rb", :line=>17, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/etag.rb", :line=>23, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/conditionalget.rb", :line=>25, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/head.rb", :line=>14, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/params_parser.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/flash.rb", :line=>242, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/session/abstract/id.rb", :line=>210, :function=>"context"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/session/abstract/id.rb", :line=>205, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/cookies.rb", :line=>341, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/query_cache.rb", :line=>64, :function=>"call"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/rack/middleware.rb", :line=>33, :function=>"call!"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/rack/middleware.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/connection_adapters/abstract/connection_pool.rb", :line=>479, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/callbacks.rb", :line=>28, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"_run__18414951737700781__call__3936810067528745909__callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"__run_callback"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>385, :function=>"_run_call_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>81, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/callbacks.rb", :line=>27, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/reloader.rb", :line=>65, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/remote_ip.rb", :line=>31, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/debug_exceptions.rb", :line=>16, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/show_exceptions.rb", :line=>56, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/rack/logger.rb", :line=>32, :function=>"call_app"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/rack/logger.rb", :line=>18, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/request_id.rb", :line=>22, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/methodoverride.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/runtime.rb", :line=>17, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/cache/strategy/local_cache.rb", :line=>72, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/lock.rb", :line=>15, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/static.rb", :line=>83, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/engine.rb", :line=>484, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/application.rb", :line=>231, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/mock_session.rb", :line=>30, :function=>"request"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/test.rb", :line=>244, :function=>"process_request"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/test.rb", :line=>58, :function=>"get"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/integration/rails/rails_spec.rb", :line=>183, :function=>"block (3 levels) in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>254, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>254, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>500, :function=>"block in with_around_and_singleton_context_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>457, :function=>"block in with_around_example_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>464, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>604, :function=>"block in run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>342, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-wait-0.0.9/lib/rspec/wait.rb", :line=>46, :function=>"block (2 levels) in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>447, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>447, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>373, :function=>"execute_with"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>606, :function=>"block (2 levels) in run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>342, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>607, :function=>"run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>464, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>457, :function=>"with_around_example_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>500, :function=>"with_around_and_singleton_context_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>251, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>629, :function=>"block in run_examples"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>625, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>625, :function=>"run_examples"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>591, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"block (3 levels) in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"block (2 levels) in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/configuration.rb", :line=>1989, :function=>"with_suite_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>111, :function=>"block in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/reporter.rb", :line=>74, :function=>"report"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>110, :function=>"run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>87, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>71, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>45, :function=>"invoke"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/exe/rspec", :line=>4, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec", :line=>23, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec", :line=>23, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>74, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>74, :function=>"kernel_load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>28, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>463, :function=>"exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/command.rb", :line=>27, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/invocation.rb", :line=>126, :function=>"invoke_command"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor.rb", :line=>387, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>27, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/base.rb", :line=>466, :function=>"start"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>18, :function=>"start"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/exe/bundle", :line=>30, :function=>"block in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/friendly_errors.rb", :line=>124, :function=>"with_friendly_errors"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/exe/bundle", :line=>22, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle", :line=>23, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle", :line=>23, :function=>"<main>"}]}], :context=>{:version=>"1.2.3", :rootDirectory=>"/Users/kyrylo/Code/airbrake/airbrake/gemfiles", :hostname=>"Kyrylos-MacBook-Pro.local", :severity=>"error", :os=>"x86_64-darwin16", :language=>"ruby/2.4.2", :notifier=>{:name=>"airbrake-ruby", :version=>"4.2.0", :url=>"https://github.com/airbrake/airbrake-ruby"}}, :environment=>{:program_name=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec"}, :session=>{}, :params=>{}}, @stash={:exception=>#<AirbrakeTestError: delayed_job error>, :rack_request=>#<ActionDispatch::Request:0x00007fc4aeb52f28 @env={"rack.version"=>[1, 1], "rack.input"=>#<StringIO:0x00007fc4adbdd930>, "rack.errors"=>#<StringIO:0x00007fc4adbdda20>, "rack.multithread"=>false, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "PATH_INFO"=>"/delayed_job", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "rack.test"=>true, "REMOTE_ADDR"=>"127.0.0.1", "HTTP_HOST"=>"example.org", "HTTP_COOKIE"=>"", "ORIGINAL_FULLPATH"=>"/delayed_job", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x00007fc4aeb2abe0>, "action_dispatch.parameter_filter"=>[], "action_dispatch.secret_token"=>"ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", "action_dispatch.show_exceptions"=>true, "action_dispatch.show_detailed_exceptions"=>false, "action_dispatch.logger"=>#<Logger:0x00007fc4ade2f8f0 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007fc4ade2f850 @datetime_format=nil>, @formatter=#<Logger::SimpleFormatter:0x00007fc4ade2f6e8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x00007fc4ade2f800 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/logs/32.log", @dev=#<File:/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/logs/32.log>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x00007fc4ade2f7b0>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x00007fc4aeb293d0 @filters=[#<Proc:0x00007fc4aeb29308@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:10>, #<Proc:0x00007fc4aeb292e0@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:11>, #<Proc:0x00007fc4aeb292b8@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:12>, #<Proc:0x00007fc4aeb289f8@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:26>], @silencers=[#<Proc:0x00007fc4aeb289d0@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:15>]>, "action_dispatch.request_id"=>"b0c8a5d0520d7f85d424d34208725d0a", "action_dispatch.remote_ip"=>#<ActionDispatch::RemoteIp::GetIp:0x00007fc4adbd6fb8 @env={...}, @middleware=#<ActionDispatch::RemoteIp:0x00007fc4ade0dbd8 @app=#<ActionDispatch::Reloader:0x00007fc4ade0dc00 @app=#<ActionDispatch::Callbacks:0x00007fc4ade0dc28 @app=#<ActiveRecord::ConnectionAdapters::ConnectionManagement:0x00007fc4ade0dc50 @app=#<Airbrake::Rack::Middleware:0x00007fc4ade0dc78 @app=#<ActiveRecord::QueryCache:0x00007fc4ade0ddb8 @app=#<ActionDispatch::Cookies:0x00007fc4ade0dfc0 @app=#<ActionDispatch::Session::CookieStore:0x00007fc4ade0e358 @secrets=["d834e51b056ff165085dbcdadd2a00949a31f73f5b617574686e55946ccf"], @coder=#<Rack::Session::Cookie::Base64::Marshal:0x00007fc4ade0e0d8>, @app=#<ActionDispatch::Flash:0x00007fc4ade0e380 @app=#<ActionDispatch::ParamsParser:0x00007fc4ade0e470 @app=#<ActionDispatch::Head:0x00007fc4ade0e498 @app=#<Rack::ConditionalGet:0x00007fc4ade0e4e8 @app=#<Rack::ETag:0x00007fc4ade0e510 @app=#<ActionDispatch::BestStandardsSupport:0x00007fc4ade0e560 @app=#<Warden::Manager:0x00007fc4ade0e628 @config={:default_scope=>:default, :scope_defaults=>{}, :default_strategies=>{}, :intercept_401=>true}, @app=#<ActionDispatch::Routing::RouteSet:0x00007fc4aeb2abe0>>, @header="IE=Edge,chrome=1">, @cache_control="max-age=0, private, must-revalidate", @no_cache_control="no-cache">>>, @parsers={#<Mime::Type:0x00007fc4ad295dc8 @synonyms=["text/xml", "application/x-xml"], @symbol=:xml, @string="application/xml", @hash=3759668892003428751>=>:xml_simple, #<Mime::Type:0x00007fc4ad294180 @synonyms=["text/x-json", "application/jsonrequest"], @symbol=:json, @string="application/json", @hash=-3159742846546867712>=>:json}>>, @default_options={:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :secret=>"d834e51b056ff165085dbcdadd2a00949a31f73f5b617574686e55946ccf", :coder=>#<Rack::Session::Cookie::Base64::Marshal:0x00007fc4ade0e0d8>}, @key="jiez4Mielu1AiHugog3shiiPhe3lai3faer", @cookie_only=true>>>>>>, @condition=#<Proc:0x00007fc4adecf1c0@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/application.rb:275 (lambda)>, @validated=false>, @check_ip=true, @proxies=/
1950
+ + ^127\.0\.0\.1$ | # localhost
1951
+ + ^(10 | # private IP 10.x.x.x
1952
+ + 172\.(1[6-9]|2[0-9]|3[0-1]) | # private IP in the range 172.16.0.0 .. 172.31.255.255
1953
+ + 192\.168 # private IP 192.168.x.x
1954
+ + )\.
1955
+ + /x>, @calculated_ip=false>, "rack.session"=>#<Rack::Session::Abstract::SessionHash:0x3fe256deab98 not yet loaded>, "rack.session.options"=>{:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :secret=>"d834e51b056ff165085dbcdadd2a00949a31f73f5b617574686e55946ccf", :coder=>#<Rack::Session::Cookie::Base64::Marshal:0x00007fc4ade0e0d8>, :id=>nil}, "rack.request.cookie_hash"=>{}, "rack.request.cookie_string"=>"", "action_dispatch.cookies"=>#<ActionDispatch::Cookies::CookieJar:0x00007fc4adbd53e8 @secret="ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", @set_cookies={}, @delete_cookies={}, @host="example.org", @secure=false, @closed=false, @cookies={}, @signed=#<ActionDispatch::Cookies::SignedCookieJar:0x00007fc4adbd4b00 @parent_jar=#<ActionDispatch::Cookies::CookieJar:0x00007fc4adbd53e8 ...>, @verifier=#<ActiveSupport::MessageVerifier:0x00007fc4adbd4998 @secret="ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", @digest="SHA1", @serializer=Marshal>>>, "action_dispatch.request.unsigned_session_cookie"=>{}, "warden"=>Warden::Proxy:70241352580500 @config={:default_scope=>:default, :scope_defaults=>{}, :default_strategies=>{}, :intercept_401=>true}, "action_dispatch.request.path_parameters"=>{:controller=>"dummy", :action=>"delayed_job"}, "action_controller.instance"=>#<DummyController:0x00007fc4adbbf8e0 @_routes=nil, @_action_has_layout=true, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=#<ActionDispatch::Request:0x00007fc4adbbf6b0 @env={...}, @filtered_parameters={"controller"=>"dummy", "action"=>"delayed_job"}, @method="GET", @fullpath="/delayed_job">, @_response=#<ActionDispatch::Response:0x00007fc4adbbf688 @body=[], @header={}, @status=200, @sending_file=false, @blank=false, @cache_control={}, @etag=nil, @request=#<ActionDispatch::Request:0x00007fc4adbbf6b0 @env={...}, @filtered_parameters={"controller"=>"dummy", "action"=>"delayed_job"}, @method="GET", @fullpath="/delayed_job">>, @_env={...}, @_prefixes=["dummy"], @_lookup_context=#<ActionView::LookupContext:0x00007fc4adbbefa8 @details_key=nil, @details={:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}, @skip_default_locale=false, @cache=true, @prefixes=["dummy"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x00007fc4adbbef30 @paths=[#<ActionView::FixtureResolver:0x00007fc4ad3271d8 @pattern=":prefix/:action{.:locale,}{.:formats,}{.:handlers,}", @cached={#<ActionView::LookupContext::DetailsKey:0x00007fc4ad3b1d10 @hash=3096346451701170602>=>{"notify_airbrake_helper"=>{"dummy"=>{false=>{[]=>[dummy/notify_airbrake_helper.html.erb]}}}, "application"=>{"layouts"=>{false=>{[]=>[layouts/application.html.erb]}}}, "notify_airbrake_sync_helper"=>{"dummy"=>{false=>{[]=>[dummy/notify_airbrake_sync_helper.html.erb]}}}, "index"=>{"dummy"=>{false=>{[]=>[dummy/index.html.erb]}}}, "resque"=>{"dummy"=>{false=>{[]=>[dummy/resque.html.erb]}}}, "breakdown"=>{"dummy"=>{false=>{[]=>[dummy/breakdown.html.erb]}}}}}, @hash={"layouts/application.html.erb"=>"<%= yield %>", "dummy/index.html.erb"=>"Hello from index", "dummy/notify_airbrake_helper.html.erb"=>"notify_airbrake_helper", "dummy/notify_airbrake_sync_helper.html.erb"=>"notify_airbrake_helper_sync", "dummy/active_record_after_commit.html.erb"=>"active_record_after_commit", "dummy/active_record_after_rollback.html.erb"=>"active_record_after_rollback", "dummy/active_job.html.erb"=>"active_job", "dummy/resque.html.erb"=>"resque", "dummy/delayed_job.html.erb"=>"delayed_job", "dummy/breakdown.html.erb"=>"breakdown"}>]>>, @_action_name="delayed_job", @_response_body=nil>, "action_dispatch.request.content_type"=>nil, "action_dispatch.request.request_parameters"=>{}, "rack.request.query_string"=>"", "rack.request.query_hash"=>{}, "action_dispatch.request.query_parameters"=>{}, "action_dispatch.request.parameters"=>{"controller"=>"dummy", "action"=>"delayed_job"}, "action_dispatch.request.formats"=>[#<Mime::Type:0x00007fc4ad28f630 @synonyms=["application/xhtml+xml"], @symbol=:html, @string="text/html", @hash=-2229606033541153460>]}>}, @truncator=#<Airbrake::Truncator:0x00007fc4aeb53018 @max_size=10000>>]
1956
+ ):
1957
+ lib/airbrake/rack/middleware.rb:65:in `notify_airbrake'
1958
+ lib/airbrake/rack/middleware.rb:35:in `rescue in call!'
1959
+ lib/airbrake/rack/middleware.rb:40:in `call!'
1960
+ lib/airbrake/rack/middleware.rb:21:in `call'
1961
+
1962
+
1963
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1964
+ Processing by DummyController#crash as HTML
1965
+  (0.0ms) begin transaction
1966
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1967
+  (0.0ms) commit transaction
1968
+ #<AirbrakeTestError: after_commit>
1969
+ Completed 500 Internal Server Error in 5.1ms
1970
+
1971
+ AirbrakeTestError (AirbrakeTestError):
1972
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1973
+ lib/airbrake/rack/middleware.rb:21:in `call'
1974
+
1975
+
1976
+ Started HEAD "/crash" for 127.0.0.1 at 2019-03-12 19:31:39 +0200
1977
+ Processing by DummyController#crash as HTML
1978
+  (0.0ms) begin transaction
1979
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1980
+  (0.0ms) commit transaction
1981
+ #<AirbrakeTestError: after_commit>
1982
+ Completed 0 in 4.7ms
1983
+
1984
+ AirbrakeTestError (AirbrakeTestError):
1985
+ lib/airbrake/rack/middleware.rb:33:in `call!'
1986
+ lib/airbrake/rack/middleware.rb:21:in `call'
1987
+
1988
+
1989
+ Connecting to database specified by DATABASE_URL
1990
+  (0.9ms) select sqlite_version(*)
1991
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
1992
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
1993
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1994
+ Started HEAD "/crash" for 127.0.0.1 at 2019-03-12 19:35:21 +0200
1995
+ Processing by DummyController#crash as HTML
1996
+  (0.0ms) begin transaction
1997
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
1998
+  (0.0ms) commit transaction
1999
+ #<AirbrakeTestError: after_commit>
2000
+ Completed 0 in 11.1ms
2001
+
2002
+ AirbrakeTestError (AirbrakeTestError):
2003
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2004
+ lib/airbrake/rack/middleware.rb:21:in `call'
2005
+
2006
+
2007
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:21 +0200
2008
+ Processing by DummyController#crash as HTML
2009
+  (0.0ms) begin transaction
2010
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2011
+  (0.0ms) commit transaction
2012
+ #<AirbrakeTestError: after_commit>
2013
+ Completed 500 Internal Server Error in 5.2ms
2014
+
2015
+ AirbrakeTestError (AirbrakeTestError):
2016
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2017
+ lib/airbrake/rack/middleware.rb:21:in `call'
2018
+
2019
+
2020
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:21 +0200
2021
+ Processing by DummyController#crash as HTML
2022
+  (0.0ms) begin transaction
2023
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2024
+  (0.0ms) commit transaction
2025
+ #<AirbrakeTestError: after_commit>
2026
+ Completed 500 Internal Server Error in 20.2ms
2027
+
2028
+ AirbrakeTestError (AirbrakeTestError):
2029
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2030
+ lib/airbrake/rack/middleware.rb:21:in `call'
2031
+
2032
+
2033
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:23 +0200
2034
+ Processing by DummyController#crash as HTML
2035
+  (0.0ms) begin transaction
2036
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2037
+  (0.0ms) commit transaction
2038
+ #<AirbrakeTestError: after_commit>
2039
+ Completed 500 Internal Server Error in 21.5ms
2040
+
2041
+ AirbrakeTestError (AirbrakeTestError):
2042
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2043
+ lib/airbrake/rack/middleware.rb:21:in `call'
2044
+
2045
+
2046
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:25 +0200
2047
+ Processing by DummyController#crash as HTML
2048
+  (0.0ms) begin transaction
2049
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2050
+  (0.0ms) commit transaction
2051
+ #<AirbrakeTestError: after_commit>
2052
+ Completed 500 Internal Server Error in 23.5ms
2053
+
2054
+ AirbrakeTestError (AirbrakeTestError):
2055
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2056
+ lib/airbrake/rack/middleware.rb:21:in `call'
2057
+
2058
+
2059
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:27 +0200
2060
+ Processing by DummyController#crash as HTML
2061
+  (0.0ms) begin transaction
2062
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2063
+  (0.0ms) commit transaction
2064
+ #<AirbrakeTestError: after_commit>
2065
+ Completed 500 Internal Server Error in 20.3ms
2066
+
2067
+ AirbrakeTestError (AirbrakeTestError):
2068
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2069
+ lib/airbrake/rack/middleware.rb:21:in `call'
2070
+
2071
+
2072
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:29 +0200
2073
+ Processing by DummyController#crash as HTML
2074
+  (0.0ms) begin transaction
2075
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2076
+  (0.0ms) commit transaction
2077
+ #<AirbrakeTestError: after_commit>
2078
+ Completed 500 Internal Server Error in 20.2ms
2079
+
2080
+ AirbrakeTestError (AirbrakeTestError):
2081
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2082
+ lib/airbrake/rack/middleware.rb:21:in `call'
2083
+
2084
+
2085
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:31 +0200
2086
+ Processing by DummyController#crash as HTML
2087
+  (0.0ms) begin transaction
2088
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2089
+  (0.0ms) commit transaction
2090
+ #<AirbrakeTestError: after_commit>
2091
+ Completed 500 Internal Server Error in 22.1ms
2092
+
2093
+ AirbrakeTestError (AirbrakeTestError):
2094
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2095
+ lib/airbrake/rack/middleware.rb:21:in `call'
2096
+
2097
+
2098
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:33 +0200
2099
+ Processing by DummyController#crash as HTML
2100
+  (0.0ms) begin transaction
2101
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2102
+  (0.0ms) commit transaction
2103
+ #<AirbrakeTestError: after_commit>
2104
+ Completed 500 Internal Server Error in 20.7ms
2105
+
2106
+ AirbrakeTestError (AirbrakeTestError):
2107
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2108
+ lib/airbrake/rack/middleware.rb:21:in `call'
2109
+
2110
+
2111
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:35 +0200
2112
+ Processing by DummyController#crash as HTML
2113
+  (0.0ms) begin transaction
2114
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2115
+  (0.1ms) commit transaction
2116
+ #<RSpec::Mocks::MockExpectationError: Airbrake received :notify with unexpected arguments
2117
+ expected: (an instance of Airbrake::Notice)
2118
+ got: (#<AirbrakeTestError: after_commit>)
2119
+ Diff:
2120
+ @@ -1,2 +1,2 @@
2121
+ -["an instance of Airbrake::Notice"]
2122
+ +[#<AirbrakeTestError: after_commit>]
2123
+ >
2124
+ Completed 500 Internal Server Error in 17.5ms
2125
+
2126
+ AirbrakeTestError (AirbrakeTestError):
2127
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2128
+ lib/airbrake/rack/middleware.rb:21:in `call'
2129
+
2130
+
2131
+ Started GET "/" for 127.0.0.1 at 2019-03-12 19:35:35 +0200
2132
+ Processing by DummyController#index as HTML
2133
+ Rendered dummy/index.html.erb within layouts/application (0.8ms)
2134
+ Completed 200 OK in 5.6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
2135
+ Started GET "/delayed_job" for 127.0.0.1 at 2019-03-12 19:35:35 +0200
2136
+ Processing by DummyController#delayed_job as HTML
2137
+ Completed 500 Internal Server Error in 12.7ms
2138
+
2139
+ RSpec::Mocks::MockExpectationError (Airbrake received :notify with unexpected arguments
2140
+ expected: (anything, {"job"=>hash_including("handler"=>"--- !ruby/struct:BangoJob\nbingo: bingo\nbongo: bongo\n")})
2141
+ got: (#<Airbrake::Notice:0x00007fcc663feeb0 @config=#<Airbrake::Config:0x00007fcc662339a0 @proxy={}, @queue...hash=2436672996809604676>]}>}, @truncator=#<Airbrake::Truncator:0x00007fcc663dcf40 @max_size=10000>>)
2142
+ Diff:
2143
+ @@ -1,4 +1,8 @@
2144
+ -["anything",
2145
+ - {"job"=>
2146
+ - hash_including("handler"=>"--- !ruby/struct:BangoJob\nbingo: bingo\nbongo: bongo\n")}]
2147
+ +[#<Airbrake::Notice:0x00007fcc663feeb0 @config=#<Airbrake::Config:0x00007fcc662339a0 @proxy={}, @queue_size=100, @workers=5, @code_hunks=true, @logger=#<Logger:0x00007fcc66233720 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007fcc662336d0 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x00007fcc66233658 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/dev/null", @dev=#<File:/dev/null>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x00007fcc66233388>>>, @project_id=113743, @project_key="fd04e13d806a90f96614ad8e529b2822", @host="https://api.airbrake.io", @ignore_environments=[], @timeout=nil, @blacklist_keys=[], @whitelist_keys=[], @root_directory="/Users/kyrylo/Code/airbrake/airbrake/gemfiles", @versions={}, @performance_stats=false, @performance_stats_flush_period=1, @app_version="1.2.3", @endpoint=#<URI::HTTPS https://api.airbrake.io/api/v3/projects/113743/notices>>, @payload={:errors=>[{:type=>"AirbrakeTestError", :message=>"delayed_job error", :backtrace=>[{:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/dummy_app.rb", :line=>87, :function=>"perform"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>81, :function=>"block in invoke_job"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/delayed_job.rb", :line=>10, :function=>"block (2 levels) in <class:Airbrake>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>79, :function=>"block (2 levels) in add"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>61, :function=>"block in initialize"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>79, :function=>"block in add"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>66, :function=>"execute"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>40, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>78, :function=>"invoke_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>19, :function=>"block (2 levels) in enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>61, :function=>"block in initialize"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>66, :function=>"execute"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/lifecycle.rb", :line=>40, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>17, :function=>"block in enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>16, :function=>"tap"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>16, :function=>"enqueue_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/delayed_job-4.1.5/lib/delayed/backend/base.rb", :line=>12, :function=>"enqueue"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/dummy_app.rb", :line=>149, :function=>"delayed_job"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/implicit_render.rb", :line=>4, :function=>"send_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/base.rb", :line=>167, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rendering.rb", :line=>10, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/callbacks.rb", :line=>18, :function=>"block in process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>403, :function=>"_run__146262195976897702__process_action__1770654501391382763__callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"__run_callback"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>385, :function=>"_run_process_action_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>81, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/callbacks.rb", :line=>17, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rescue.rb", :line=>29, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/instrumentation.rb", :line=>30, :function=>"block in process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications.rb", :line=>123, :function=>"block in instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications/instrumenter.rb", :line=>20, :function=>"instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/notifications.rb", :line=>123, :function=>"instrument"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/instrumentation.rb", :line=>29, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/params_wrapper.rb", :line=>207, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/railties/controller_runtime.rb", :line=>18, :function=>"process_action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/base.rb", :line=>121, :function=>"process"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/abstract_controller/rendering.rb", :line=>46, :function=>"process"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal.rb", :line=>203, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal/rack_delegation.rb", :line=>14, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_controller/metal.rb", :line=>246, :function=>"block in action"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>73, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>36, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>68, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>56, :function=>"each"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/journey-1.0.4/lib/journey/router.rb", :line=>56, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/routing/route_set.rb", :line=>608, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>36, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>35, :function=>"catch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/warden-1.2.7/lib/warden/manager.rb", :line=>35, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/best_standards_support.rb", :line=>17, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/etag.rb", :line=>23, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/conditionalget.rb", :line=>25, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/head.rb", :line=>14, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/params_parser.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/flash.rb", :line=>242, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/session/abstract/id.rb", :line=>210, :function=>"context"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/session/abstract/id.rb", :line=>205, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/cookies.rb", :line=>341, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/query_cache.rb", :line=>64, :function=>"call"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/rack/middleware.rb", :line=>33, :function=>"call!"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/lib/airbrake/rack/middleware.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activerecord-3.2.22.5/lib/active_record/connection_adapters/abstract/connection_pool.rb", :line=>479, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/callbacks.rb", :line=>28, :function=>"block in call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"_run__1061269560901798452__call__557319792300805332__callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>405, :function=>"__run_callback"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>385, :function=>"_run_call_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/callbacks.rb", :line=>81, :function=>"run_callbacks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/callbacks.rb", :line=>27, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/reloader.rb", :line=>65, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/remote_ip.rb", :line=>31, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/debug_exceptions.rb", :line=>16, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/show_exceptions.rb", :line=>56, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/rack/logger.rb", :line=>32, :function=>"call_app"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/rack/logger.rb", :line=>18, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/request_id.rb", :line=>22, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/methodoverride.rb", :line=>21, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/runtime.rb", :line=>17, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/activesupport-3.2.22.5/lib/active_support/cache/strategy/local_cache.rb", :line=>72, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-1.4.7/lib/rack/lock.rb", :line=>15, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/actionpack-3.2.22.5/lib/action_dispatch/middleware/static.rb", :line=>83, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/engine.rb", :line=>484, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/application.rb", :line=>231, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/mock_session.rb", :line=>30, :function=>"request"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/test.rb", :line=>244, :function=>"process_request"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rack-test-0.6.3/lib/rack/test.rb", :line=>58, :function=>"get"}, {:file=>"/Users/kyrylo/Code/airbrake/airbrake/spec/integration/rails/rails_spec.rb", :line=>183, :function=>"block (3 levels) in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>254, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>254, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>500, :function=>"block in with_around_and_singleton_context_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>457, :function=>"block in with_around_example_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>464, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>604, :function=>"block in run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>342, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-wait-0.0.9/lib/rspec/wait.rb", :line=>46, :function=>"block (2 levels) in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>447, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>447, :function=>"instance_exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>373, :function=>"execute_with"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>606, :function=>"block (2 levels) in run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>342, :function=>"call"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>607, :function=>"run_around_example_hooks_for"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb", :line=>464, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>457, :function=>"with_around_example_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>500, :function=>"with_around_and_singleton_context_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example.rb", :line=>251, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>629, :function=>"block in run_examples"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>625, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>625, :function=>"run_examples"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>591, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"block in run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb", :line=>592, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"block (3 levels) in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"map"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>116, :function=>"block (2 levels) in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/configuration.rb", :line=>1989, :function=>"with_suite_hooks"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>111, :function=>"block in run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/reporter.rb", :line=>74, :function=>"report"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>110, :function=>"run_specs"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>87, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>71, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb", :line=>45, :function=>"invoke"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/rspec-core-3.8.0/exe/rspec", :line=>4, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec", :line=>23, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec", :line=>23, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>74, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>74, :function=>"kernel_load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli/exec.rb", :line=>28, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>463, :function=>"exec"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/command.rb", :line=>27, :function=>"run"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/invocation.rb", :line=>126, :function=>"invoke_command"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor.rb", :line=>387, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>27, :function=>"dispatch"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/vendor/thor/lib/thor/base.rb", :line=>466, :function=>"start"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/cli.rb", :line=>18, :function=>"start"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/exe/bundle", :line=>30, :function=>"block in <top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/lib/bundler/friendly_errors.rb", :line=>124, :function=>"with_friendly_errors"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/gems/bundler-1.17.1/exe/bundle", :line=>22, :function=>"<top (required)>"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle", :line=>23, :function=>"load"}, {:file=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/bundle", :line=>23, :function=>"<main>"}]}], :context=>{:version=>"1.2.3", :rootDirectory=>"/Users/kyrylo/Code/airbrake/airbrake/gemfiles", :hostname=>"Kyrylos-MacBook-Pro.local", :severity=>"error", :os=>"x86_64-darwin16", :language=>"ruby/2.4.2", :notifier=>{:name=>"airbrake-ruby", :version=>"4.2.0", :url=>"https://github.com/airbrake/airbrake-ruby"}}, :environment=>{:program_name=>"/Users/kyrylo/.gem/ruby/2.4.2/bin/rspec"}, :session=>{}, :params=>{}}, @stash={:exception=>#<AirbrakeTestError: delayed_job error>, :rack_request=>#<ActionDispatch::Request:0x00007fcc663dcf18 @env={"rack.version"=>[1, 1], "rack.input"=>#<StringIO:0x00007fcc6459dcf0>, "rack.errors"=>#<StringIO:0x00007fcc6459ddb8>, "rack.multithread"=>false, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "PATH_INFO"=>"/delayed_job", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "rack.test"=>true, "REMOTE_ADDR"=>"127.0.0.1", "HTTP_HOST"=>"example.org", "HTTP_COOKIE"=>"", "ORIGINAL_FULLPATH"=>"/delayed_job", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x00007fcc64636e28>, "action_dispatch.parameter_filter"=>[], "action_dispatch.secret_token"=>"ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", "action_dispatch.show_exceptions"=>true, "action_dispatch.show_detailed_exceptions"=>false, "action_dispatch.logger"=>#<Logger:0x00007fcc654867f8 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007fcc65486758 @datetime_format=nil>, @formatter=#<Logger::SimpleFormatter:0x00007fcc654865f0 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x00007fcc65486708 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/logs/32.log", @dev=#<File:/Users/kyrylo/Code/airbrake/airbrake/spec/apps/rails/logs/32.log>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x00007fcc654866b8>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x00007fcc663ace80 @filters=[#<Proc:0x00007fcc663accc8@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:10>, #<Proc:0x00007fcc663acbb0@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:11>, #<Proc:0x00007fcc663acb88@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:12>, #<Proc:0x00007fcc663ac368@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:26>], @silencers=[#<Proc:0x00007fcc663ac340@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/backtrace_cleaner.rb:15>]>, "action_dispatch.request_id"=>"c5cf7e165373b1d1634cb89019be7228", "action_dispatch.remote_ip"=>#<ActionDispatch::RemoteIp::GetIp:0x00007fcc6459c0a8 @env={...}, @middleware=#<ActionDispatch::RemoteIp:0x00007fcc6627a170 @app=#<ActionDispatch::Reloader:0x00007fcc6627a198 @app=#<ActionDispatch::Callbacks:0x00007fcc6627a1c0 @app=#<ActiveRecord::ConnectionAdapters::ConnectionManagement:0x00007fcc6627a1e8 @app=#<Airbrake::Rack::Middleware:0x00007fcc6627a210 @app=#<ActiveRecord::QueryCache:0x00007fcc6627a300 @app=#<ActionDispatch::Cookies:0x00007fcc6627a3c8 @app=#<ActionDispatch::Session::CookieStore:0x00007fcc6627a6e8 @secrets=["a4252bbcd2f724b945c37aa60fafc4757d303a9359a42c1fa11965ae82c0"], @coder=#<Rack::Session::Cookie::Base64::Marshal:0x00007fcc6627a490>, @app=#<ActionDispatch::Flash:0x00007fcc6627a710 @app=#<ActionDispatch::ParamsParser:0x00007fcc6627a800 @app=#<ActionDispatch::Head:0x00007fcc6627a828 @app=#<Rack::ConditionalGet:0x00007fcc6627a850 @app=#<Rack::ETag:0x00007fcc6627a878 @app=#<ActionDispatch::BestStandardsSupport:0x00007fcc6627a8c8 @app=#<Warden::Manager:0x00007fcc6627a990 @config={:default_scope=>:default, :scope_defaults=>{}, :default_strategies=>{}, :intercept_401=>true}, @app=#<ActionDispatch::Routing::RouteSet:0x00007fcc64636e28>>, @header="IE=Edge,chrome=1">, @cache_control="max-age=0, private, must-revalidate", @no_cache_control="no-cache">>>, @parsers={#<Mime::Type:0x00007fcc6515abd8 @synonyms=["text/xml", "application/x-xml"], @symbol=:xml, @string="application/xml", @hash=4361937142415323936>=>:xml_simple, #<Mime::Type:0x00007fcc65158bd0 @synonyms=["text/x-json", "application/jsonrequest"], @symbol=:json, @string="application/json", @hash=2316716360347649800>=>:json}>>, @default_options={:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :secret=>"a4252bbcd2f724b945c37aa60fafc4757d303a9359a42c1fa11965ae82c0", :coder=>#<Rack::Session::Cookie::Base64::Marshal:0x00007fcc6627a490>}, @key="jiez4Mielu1AiHugog3shiiPhe3lai3faer", @cookie_only=true>>>>>>, @condition=#<Proc:0x00007fcc644deff8@/Users/kyrylo/.gem/ruby/2.4.2/gems/railties-3.2.22.5/lib/rails/application.rb:275 (lambda)>, @validated=false>, @check_ip=true, @proxies=/
2148
+ + ^127\.0\.0\.1$ | # localhost
2149
+ + ^(10 | # private IP 10.x.x.x
2150
+ + 172\.(1[6-9]|2[0-9]|3[0-1]) | # private IP in the range 172.16.0.0 .. 172.31.255.255
2151
+ + 192\.168 # private IP 192.168.x.x
2152
+ + )\.
2153
+ + /x>, @calculated_ip=false>, "rack.session"=>#<Rack::Session::Abstract::SessionHash:0x3fe6322cb87c not yet loaded>, "rack.session.options"=>{:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :secret=>"a4252bbcd2f724b945c37aa60fafc4757d303a9359a42c1fa11965ae82c0", :coder=>#<Rack::Session::Cookie::Base64::Marshal:0x00007fcc6627a490>, :id=>nil}, "rack.request.cookie_hash"=>{}, "rack.request.cookie_string"=>"", "action_dispatch.cookies"=>#<ActionDispatch::Cookies::CookieJar:0x00007fcc64596dd8 @secret="ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", @set_cookies={}, @delete_cookies={}, @host="example.org", @secure=false, @closed=false, @cookies={}, @signed=#<ActionDispatch::Cookies::SignedCookieJar:0x00007fcc64596748 @parent_jar=#<ActionDispatch::Cookies::CookieJar:0x00007fcc64596dd8 ...>, @verifier=#<ActiveSupport::MessageVerifier:0x00007fcc645966d0 @secret="ni6aeph6aeriBiphesh8omahv6cohpue5Quah5ceiMohtuvei8", @digest="SHA1", @serializer=Marshal>>>, "action_dispatch.request.unsigned_session_cookie"=>{}, "warden"=>Warden::Proxy:70257916818160 @config={:default_scope=>:default, :scope_defaults=>{}, :default_strategies=>{}, :intercept_401=>true}, "action_dispatch.request.path_parameters"=>{:controller=>"dummy", :action=>"delayed_job"}, "action_controller.instance"=>#<DummyController:0x00007fcc6458fc68 @_routes=nil, @_action_has_layout=true, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=#<ActionDispatch::Request:0x00007fcc6458fab0 @env={...}, @filtered_parameters={"controller"=>"dummy", "action"=>"delayed_job"}, @method="GET", @fullpath="/delayed_job">, @_response=#<ActionDispatch::Response:0x00007fcc6458fa88 @body=[], @header={}, @status=200, @sending_file=false, @blank=false, @cache_control={}, @etag=nil, @request=#<ActionDispatch::Request:0x00007fcc6458fab0 @env={...}, @filtered_parameters={"controller"=>"dummy", "action"=>"delayed_job"}, @method="GET", @fullpath="/delayed_job">>, @_env={...}, @_prefixes=["dummy"], @_lookup_context=#<ActionView::LookupContext:0x00007fcc6458f5b0 @details_key=nil, @details={:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}, @skip_default_locale=false, @cache=true, @prefixes=["dummy"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x00007fcc6458f4e8 @paths=[#<ActionView::FixtureResolver:0x00007fcc6636b250 @pattern=":prefix/:action{.:locale,}{.:formats,}{.:handlers,}", @cached={#<ActionView::LookupContext::DetailsKey:0x00007fcc645ec878 @hash=3216129721054552796>=>{"index"=>{"dummy"=>{false=>{[]=>[dummy/index.html.erb]}}}, "application"=>{"layouts"=>{false=>{[]=>[layouts/application.html.erb]}}}}}, @hash={"layouts/application.html.erb"=>"<%= yield %>", "dummy/index.html.erb"=>"Hello from index", "dummy/notify_airbrake_helper.html.erb"=>"notify_airbrake_helper", "dummy/notify_airbrake_sync_helper.html.erb"=>"notify_airbrake_helper_sync", "dummy/active_record_after_commit.html.erb"=>"active_record_after_commit", "dummy/active_record_after_rollback.html.erb"=>"active_record_after_rollback", "dummy/active_job.html.erb"=>"active_job", "dummy/resque.html.erb"=>"resque", "dummy/delayed_job.html.erb"=>"delayed_job", "dummy/breakdown.html.erb"=>"breakdown"}>]>>, @_action_name="delayed_job", @_response_body=nil>, "action_dispatch.request.content_type"=>nil, "action_dispatch.request.request_parameters"=>{}, "rack.request.query_string"=>"", "rack.request.query_hash"=>{}, "action_dispatch.request.query_parameters"=>{}, "action_dispatch.request.parameters"=>{"controller"=>"dummy", "action"=>"delayed_job"}, "action_dispatch.request.formats"=>[#<Mime::Type:0x00007fcc651534c8 @synonyms=["application/xhtml+xml"], @symbol=:html, @string="text/html", @hash=2436672996809604676>]}>}, @truncator=#<Airbrake::Truncator:0x00007fcc663dcf40 @max_size=10000>>]
2154
+ ):
2155
+ lib/airbrake/rack/middleware.rb:65:in `notify_airbrake'
2156
+ lib/airbrake/rack/middleware.rb:35:in `rescue in call!'
2157
+ lib/airbrake/rack/middleware.rb:40:in `call!'
2158
+ lib/airbrake/rack/middleware.rb:21:in `call'
2159
+
2160
+
2161
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:35 +0200
2162
+ Processing by DummyController#crash as HTML
2163
+  (0.0ms) begin transaction
2164
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2165
+  (0.0ms) commit transaction
2166
+ #<AirbrakeTestError: after_commit>
2167
+ Completed 500 Internal Server Error in 21.4ms
2168
+
2169
+ AirbrakeTestError (AirbrakeTestError):
2170
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2171
+ lib/airbrake/rack/middleware.rb:21:in `call'
2172
+
2173
+
2174
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:37 +0200
2175
+ Processing by DummyController#crash as HTML
2176
+  (0.0ms) begin transaction
2177
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2178
+  (0.0ms) commit transaction
2179
+ #<AirbrakeTestError: after_commit>
2180
+ Completed 500 Internal Server Error in 5.6ms
2181
+
2182
+ AirbrakeTestError (AirbrakeTestError):
2183
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2184
+ lib/airbrake/rack/middleware.rb:21:in `call'
2185
+
2186
+
2187
+ Started GET "/crash" for 127.0.0.1 at 2019-03-12 19:35:37 +0200
2188
+ Processing by DummyController#crash as HTML
2189
+  (0.0ms) begin transaction
2190
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2191
+  (0.0ms) commit transaction
2192
+ #<AirbrakeTestError: after_commit>
2193
+ Completed 500 Internal Server Error in 1.7ms
2194
+
2195
+ AirbrakeTestError (AirbrakeTestError):
2196
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2197
+ lib/airbrake/rack/middleware.rb:21:in `call'
2198
+
2199
+
2200
+ Started GET "/resque" for 127.0.0.1 at 2019-03-12 19:35:37 +0200
2201
+ Processing by DummyController#resque as HTML
2202
+ Rendered dummy/resque.html.erb within layouts/application (0.2ms)
2203
+ Completed 200 OK in 2.0ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2204
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:37 +0200
2205
+ Processing by DummyController#notify_airbrake_helper as HTML
2206
+ Parameters: {"foo"=>"bar"}
2207
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
2208
+ Completed 200 OK in 16.4ms (Views: 9.9ms | ActiveRecord: 0.0ms)
2209
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:39 +0200
2210
+ Processing by DummyController#notify_airbrake_helper as HTML
2211
+ Parameters: {"foo"=>"bar"}
2212
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
2213
+ Completed 200 OK in 15.6ms (Views: 10.0ms | ActiveRecord: 0.0ms)
2214
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:41 +0200
2215
+ Processing by DummyController#notify_airbrake_helper as HTML
2216
+ Parameters: {"foo"=>"bar"}
2217
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
2218
+ Completed 200 OK in 17.8ms (Views: 12.4ms | ActiveRecord: 0.0ms)
2219
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:43 +0200
2220
+ Processing by DummyController#notify_airbrake_helper as HTML
2221
+ Parameters: {"foo"=>"bar"}
2222
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
2223
+ Completed 200 OK in 23.7ms (Views: 17.2ms | ActiveRecord: 0.0ms)
2224
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:45 +0200
2225
+ Processing by DummyController#notify_airbrake_helper as HTML
2226
+ Parameters: {"foo"=>"bar"}
2227
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
2228
+ Completed 200 OK in 32.0ms (Views: 22.7ms | ActiveRecord: 0.0ms)
2229
+ Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:47 +0200
2230
+ Processing by DummyController#notify_airbrake_helper as HTML
2231
+ Parameters: {"foo"=>"bar"}
2232
+ Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
2233
+ Completed 200 OK in 15.7ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2234
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:49 +0200
2235
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2236
+ Parameters: {"foo"=>"bar"}
2237
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.4ms)
2238
+ Completed 200 OK in 17.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2239
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:51 +0200
2240
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2241
+ Parameters: {"foo"=>"bar"}
2242
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
2243
+ Completed 200 OK in 16.9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2244
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:53 +0200
2245
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2246
+ Parameters: {"foo"=>"bar"}
2247
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
2248
+ Completed 200 OK in 15.7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2249
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:55 +0200
2250
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2251
+ Parameters: {"foo"=>"bar"}
2252
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
2253
+ Completed 200 OK in 24.3ms (Views: 8.6ms | ActiveRecord: 0.0ms)
2254
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:57 +0200
2255
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2256
+ Parameters: {"foo"=>"bar"}
2257
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.4ms)
2258
+ Completed 200 OK in 18.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2259
+ Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2019-03-12 19:35:59 +0200
2260
+ Processing by DummyController#notify_airbrake_sync_helper as HTML
2261
+ Parameters: {"foo"=>"bar"}
2262
+ Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
2263
+ Completed 200 OK in 15.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2264
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:01 +0200
2265
+ Processing by DummyController#crash as HTML
2266
+ Parameters: {"foo"=>"bar"}
2267
+  (0.0ms) begin transaction
2268
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2269
+  (0.0ms) commit transaction
2270
+ #<AirbrakeTestError: after_commit>
2271
+ Completed 500 Internal Server Error in 21.9ms
2272
+
2273
+ AirbrakeTestError (AirbrakeTestError):
2274
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2275
+ lib/airbrake/rack/middleware.rb:21:in `call'
2276
+
2277
+
2278
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:03 +0200
2279
+ Processing by DummyController#crash as HTML
2280
+ Parameters: {"foo"=>"bar"}
2281
+  (0.0ms) begin transaction
2282
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2283
+  (0.0ms) commit transaction
2284
+ #<AirbrakeTestError: after_commit>
2285
+ Completed 500 Internal Server Error in 22.1ms
2286
+
2287
+ AirbrakeTestError (AirbrakeTestError):
2288
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2289
+ lib/airbrake/rack/middleware.rb:21:in `call'
2290
+
2291
+
2292
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:05 +0200
2293
+ Processing by DummyController#crash as HTML
2294
+ Parameters: {"foo"=>"bar"}
2295
+  (0.1ms) begin transaction
2296
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2297
+  (0.0ms) commit transaction
2298
+ #<AirbrakeTestError: after_commit>
2299
+ Completed 500 Internal Server Error in 22.7ms
2300
+
2301
+ AirbrakeTestError (AirbrakeTestError):
2302
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2303
+ lib/airbrake/rack/middleware.rb:21:in `call'
2304
+
2305
+
2306
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:07 +0200
2307
+ Processing by DummyController#crash as HTML
2308
+ Parameters: {"foo"=>"bar"}
2309
+  (0.1ms) begin transaction
2310
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2311
+  (0.0ms) commit transaction
2312
+ #<AirbrakeTestError: after_commit>
2313
+ Completed 500 Internal Server Error in 26.0ms
2314
+
2315
+ AirbrakeTestError (AirbrakeTestError):
2316
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2317
+ lib/airbrake/rack/middleware.rb:21:in `call'
2318
+
2319
+
2320
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:09 +0200
2321
+ Processing by DummyController#crash as HTML
2322
+ Parameters: {"foo"=>"bar"}
2323
+  (0.0ms) begin transaction
2324
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2325
+  (0.1ms) commit transaction
2326
+ #<AirbrakeTestError: after_commit>
2327
+ Completed 500 Internal Server Error in 36.4ms
2328
+
2329
+ AirbrakeTestError (AirbrakeTestError):
2330
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2331
+ lib/airbrake/rack/middleware.rb:21:in `call'
2332
+
2333
+
2334
+ Started GET "/crash?foo=bar" for 127.0.0.1 at 2019-03-12 19:36:12 +0200
2335
+ Processing by DummyController#crash as HTML
2336
+ Parameters: {"foo"=>"bar"}
2337
+  (0.0ms) begin transaction
2338
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "book"]]
2339
+  (0.0ms) commit transaction
2340
+ #<AirbrakeTestError: after_commit>
2341
+ Completed 500 Internal Server Error in 36.8ms
2342
+
2343
+ AirbrakeTestError (AirbrakeTestError):
2344
+ lib/airbrake/rack/middleware.rb:33:in `call!'
2345
+ lib/airbrake/rack/middleware.rb:21:in `call'
2346
+
2347
+
2348
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:36:14 +0200
2349
+ Processing by DummyController#breakdown as HTML
2350
+  (0.0ms) begin transaction
2351
+ SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
2352
+  (0.0ms) commit transaction
2353
+ #<AirbrakeTestError: after_commit>
2354
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
2355
+ Rendered dummy/breakdown.html.erb within layouts/application (0.2ms)
2356
+ Completed 200 OK in 9.5ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2357
+ Connecting to database specified by DATABASE_URL
2358
+  (1.1ms) select sqlite_version(*)
2359
+  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
2360
+  (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(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) 
2361
+  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
2362
+ Started GET "/breakdown" for 127.0.0.1 at 2019-03-12 19:43:35 +0200
2363
+ Processing by DummyController#breakdown as HTML
2364
+  (0.0ms) begin transaction
2365
+ SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "breakdown"]]
2366
+  (0.0ms) commit transaction
2367
+ #<AirbrakeTestError: after_commit>
2368
+ Book Load (0.1ms) SELECT "books".* FROM "books"
2369
+ Rendered dummy/breakdown.html.erb within layouts/application (0.9ms)
2370
+ Completed 200 OK in 19.5ms (Views: 5.8ms | ActiveRecord: 0.4ms)