airbrake 5.4.4 → 5.4.5

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: a40a90703e4d26a3db51ba7d9ed9c031565e449f
4
- data.tar.gz: 2fb2d6943406f5806808a1334659a82cae3684c6
3
+ metadata.gz: 9b371b1f6e668feb26db738a5c8a234bc1798779
4
+ data.tar.gz: a9fa8633a9fb358293245932b485b9c1f352363b
5
5
  SHA512:
6
- metadata.gz: ac4e297f85e000392d7f5b9eec5f9ea67b41ae0909e525355e7071de4d7e1cfb7670f2b1b7da8589c5e462985a3b27a5256b37e7521397253736d6904f923837
7
- data.tar.gz: 52ab402c3d9aa0b4b0b187f06304d3cdf3699e7062db79edb87dd9fc5570b24e307507bd477e7ed272b610e27c90d491c639f1cd6748cdd5cbe0fb640e5a5fc9
6
+ metadata.gz: fda7f3e8a40f1081a91afcf3213d42dcd93dc85a866ae7441c2e81c7910c54363fa95c76e771f47b2803d8f5d8df94556657df646269729b845726272692d22c
7
+ data.tar.gz: ef0a07456d709ca567890af95f36100098a258612d256b9350283b536fa8809d113a01c77549b2f40a9a35b4b11eb2fcef40a7723547070fb431544565247c57
@@ -16,7 +16,7 @@ module Airbrake
16
16
  notice[:context][:component] = 'active_job'
17
17
  notice[:context][:action] = self.class.name
18
18
 
19
- notice[:params] = as_json
19
+ notice[:params] = serialize
20
20
 
21
21
  # We special case Resque because it kills our workers by forking, so
22
22
  # we use synchronous delivery instead.
@@ -2,5 +2,5 @@
2
2
  # We use Semantic Versioning v2.0.0
3
3
  # More information: http://semver.org/
4
4
  module Airbrake
5
- AIRBRAKE_VERSION = '5.4.4'.freeze
5
+ AIRBRAKE_VERSION = '5.4.5'.freeze
6
6
  end
@@ -58,7 +58,14 @@ if Gem::Version.new(Rails.version) >= Gem::Version.new('4.2')
58
58
  class BingoJob < ActiveJob::Base
59
59
  queue_as :bingo
60
60
 
61
+ class BingoWrapper
62
+ def initialize(bingo)
63
+ @bingo = bingo
64
+ end
65
+ end
66
+
61
67
  def perform(*_args)
68
+ @wrapper = BingoWrapper.new(self)
62
69
  raise AirbrakeTestError, 'active_job error'
63
70
  end
64
71
  end
@@ -862,3 +862,489 @@ ArgumentError (wrong number of arguments (given 0, expected 1+)):
862
862
  lib/airbrake/rack/middleware.rb:21:in `call'
863
863
 
864
864
 
865
+ D, [2016-08-23T15:06:46.530470 #26830] DEBUG -- :  (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
866
+ D, [2016-08-23T15:06:46.536810 #26830] DEBUG -- :  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
867
+ D, [2016-08-23T15:06:46.537142 #26830] DEBUG -- :  (0.1ms) select sqlite_version(*)
868
+ D, [2016-08-23T15:06:46.537556 #26830] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
869
+ I, [2016-08-23T15:06:46.565573 #26830] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
870
+ I, [2016-08-23T15:06:46.567641 #26830] INFO -- : Processing by DummyController#active_record_after_commit as HTML
871
+ D, [2016-08-23T15:06:46.572395 #26830] DEBUG -- :  (0.1ms) begin transaction
872
+ D, [2016-08-23T15:06:46.574987 #26830] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
873
+ D, [2016-08-23T15:06:46.575207 #26830] DEBUG -- :  (0.0ms) commit transaction
874
+ I, [2016-08-23T15:06:46.576446 #26830] INFO -- : Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms)
875
+ F, [2016-08-23T15:06:46.587175 #26830] FATAL -- :
876
+ AirbrakeTestError (after_commit):
877
+ lib/airbrake/rack/middleware.rb:22:in `call'
878
+
879
+
880
+ I, [2016-08-23T15:06:46.704612 #26830] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
881
+ I, [2016-08-23T15:06:46.705392 #26830] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
882
+ D, [2016-08-23T15:06:46.705627 #26830] DEBUG -- :  (0.1ms) begin transaction
883
+ D, [2016-08-23T15:06:46.706237 #26830] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
884
+ D, [2016-08-23T15:06:46.706472 #26830] DEBUG -- :  (0.0ms) rollback transaction
885
+ I, [2016-08-23T15:06:46.706837 #26830] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
886
+ F, [2016-08-23T15:06:46.719652 #26830] FATAL -- :
887
+ AirbrakeTestError (after_rollback):
888
+ lib/airbrake/rack/middleware.rb:22:in `call'
889
+
890
+
891
+ I, [2016-08-23T15:06:46.722555 #26830] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
892
+ I, [2016-08-23T15:06:46.723711 #26830] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
893
+ I, [2016-08-23T15:06:46.723756 #26830] INFO -- : Parameters: {"foo"=>"bar"}
894
+ I, [2016-08-23T15:06:46.740866 #26830] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (1.2ms)
895
+ I, [2016-08-23T15:06:46.741259 #26830] INFO -- : Completed 200 OK in 17ms (Views: 9.3ms | ActiveRecord: 0.0ms)
896
+ I, [2016-08-23T15:06:46.743785 #26830] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
897
+ I, [2016-08-23T15:06:46.744484 #26830] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
898
+ I, [2016-08-23T15:06:46.744527 #26830] INFO -- : Parameters: {"foo"=>"bar"}
899
+ I, [2016-08-23T15:06:46.756291 #26830] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
900
+ I, [2016-08-23T15:06:46.756637 #26830] INFO -- : Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
901
+ I, [2016-08-23T15:06:46.758818 #26830] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
902
+ I, [2016-08-23T15:06:46.759488 #26830] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
903
+ I, [2016-08-23T15:06:46.759514 #26830] INFO -- : Parameters: {"foo"=>"bar"}
904
+ I, [2016-08-23T15:06:46.766890 #26830] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
905
+ I, [2016-08-23T15:06:46.767177 #26830] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
906
+ I, [2016-08-23T15:06:46.769471 #26830] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
907
+ I, [2016-08-23T15:06:46.770255 #26830] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
908
+ I, [2016-08-23T15:06:46.770285 #26830] INFO -- : Parameters: {"foo"=>"bar"}
909
+ I, [2016-08-23T15:06:46.778241 #26830] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
910
+ I, [2016-08-23T15:06:46.778487 #26830] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
911
+ I, [2016-08-23T15:06:46.780500 #26830] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
912
+ I, [2016-08-23T15:06:46.781168 #26830] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
913
+ I, [2016-08-23T15:06:46.781197 #26830] INFO -- : Parameters: {"foo"=>"bar"}
914
+ I, [2016-08-23T15:06:46.788218 #26830] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
915
+ I, [2016-08-23T15:06:46.788481 #26830] INFO -- : Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
916
+ I, [2016-08-23T15:06:46.790746 #26830] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
917
+ I, [2016-08-23T15:06:46.791485 #26830] INFO -- : Processing by DummyController#crash as HTML
918
+ I, [2016-08-23T15:06:46.791515 #26830] INFO -- : Parameters: {"foo"=>"bar"}
919
+ I, [2016-08-23T15:06:46.791740 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
920
+ F, [2016-08-23T15:06:46.795407 #26830] FATAL -- :
921
+ AirbrakeTestError (AirbrakeTestError):
922
+ lib/airbrake/rack/middleware.rb:22:in `call'
923
+
924
+
925
+ I, [2016-08-23T15:06:46.902815 #26830] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
926
+ I, [2016-08-23T15:06:46.903842 #26830] INFO -- : Processing by DummyController#crash as HTML
927
+ I, [2016-08-23T15:06:46.903883 #26830] INFO -- : Parameters: {"foo"=>"bar"}
928
+ I, [2016-08-23T15:06:46.904199 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
929
+ F, [2016-08-23T15:06:46.912592 #26830] FATAL -- :
930
+ AirbrakeTestError (AirbrakeTestError):
931
+ lib/airbrake/rack/middleware.rb:22:in `call'
932
+
933
+
934
+ I, [2016-08-23T15:06:46.914238 #26830] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:46 +0300
935
+ I, [2016-08-23T15:06:46.914863 #26830] INFO -- : Processing by DummyController#crash as HTML
936
+ I, [2016-08-23T15:06:46.914890 #26830] INFO -- : Parameters: {"foo"=>"bar"}
937
+ I, [2016-08-23T15:06:46.915120 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
938
+ F, [2016-08-23T15:06:46.918146 #26830] FATAL -- :
939
+ AirbrakeTestError (AirbrakeTestError):
940
+ lib/airbrake/rack/middleware.rb:22:in `call'
941
+
942
+
943
+ I, [2016-08-23T15:06:47.025533 #26830] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
944
+ I, [2016-08-23T15:06:47.026382 #26830] INFO -- : Processing by DummyController#crash as HTML
945
+ I, [2016-08-23T15:06:47.026417 #26830] INFO -- : Parameters: {"foo"=>"bar"}
946
+ I, [2016-08-23T15:06:47.026704 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
947
+ F, [2016-08-23T15:06:47.030687 #26830] FATAL -- :
948
+ AirbrakeTestError (AirbrakeTestError):
949
+ lib/airbrake/rack/middleware.rb:22:in `call'
950
+
951
+
952
+ I, [2016-08-23T15:06:47.135260 #26830] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
953
+ I, [2016-08-23T15:06:47.136425 #26830] INFO -- : Processing by DummyController#crash as HTML
954
+ I, [2016-08-23T15:06:47.136483 #26830] INFO -- : Parameters: {"foo"=>"bar"}
955
+ I, [2016-08-23T15:06:47.136853 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
956
+ F, [2016-08-23T15:06:47.146062 #26830] FATAL -- :
957
+ AirbrakeTestError (AirbrakeTestError):
958
+ lib/airbrake/rack/middleware.rb:22:in `call'
959
+
960
+
961
+ I, [2016-08-23T15:06:47.147778 #26830] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
962
+ I, [2016-08-23T15:06:47.148481 #26830] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
963
+ I, [2016-08-23T15:06:47.148510 #26830] INFO -- : Parameters: {"foo"=>"bar"}
964
+ I, [2016-08-23T15:06:47.151456 #26830] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
965
+ I, [2016-08-23T15:06:47.151728 #26830] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
966
+ I, [2016-08-23T15:06:47.258919 #26830] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
967
+ I, [2016-08-23T15:06:47.259857 #26830] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
968
+ I, [2016-08-23T15:06:47.259895 #26830] INFO -- : Parameters: {"foo"=>"bar"}
969
+ I, [2016-08-23T15:06:47.268440 #26830] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
970
+ I, [2016-08-23T15:06:47.268727 #26830] INFO -- : Completed 200 OK in 9ms (Views: 5.8ms | ActiveRecord: 0.0ms)
971
+ I, [2016-08-23T15:06:47.271169 #26830] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
972
+ I, [2016-08-23T15:06:47.271948 #26830] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
973
+ I, [2016-08-23T15:06:47.271981 #26830] INFO -- : Parameters: {"foo"=>"bar"}
974
+ I, [2016-08-23T15:06:47.275269 #26830] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
975
+ I, [2016-08-23T15:06:47.275516 #26830] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
976
+ I, [2016-08-23T15:06:47.382999 #26830] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
977
+ I, [2016-08-23T15:06:47.383935 #26830] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
978
+ I, [2016-08-23T15:06:47.383976 #26830] INFO -- : Parameters: {"foo"=>"bar"}
979
+ I, [2016-08-23T15:06:47.393470 #26830] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
980
+ I, [2016-08-23T15:06:47.393716 #26830] INFO -- : Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.0ms)
981
+ I, [2016-08-23T15:06:47.395695 #26830] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
982
+ I, [2016-08-23T15:06:47.396379 #26830] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
983
+ I, [2016-08-23T15:06:47.396409 #26830] INFO -- : Parameters: {"foo"=>"bar"}
984
+ I, [2016-08-23T15:06:47.401967 #26830] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
985
+ I, [2016-08-23T15:06:47.402250 #26830] INFO -- : Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
986
+ I, [2016-08-23T15:06:47.508356 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
987
+ I, [2016-08-23T15:06:47.509462 #26830] INFO -- : Processing by DummyController#crash as HTML
988
+ I, [2016-08-23T15:06:47.509809 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
989
+ F, [2016-08-23T15:06:47.519079 #26830] FATAL -- :
990
+ AirbrakeTestError (AirbrakeTestError):
991
+ lib/airbrake/rack/middleware.rb:22:in `call'
992
+
993
+
994
+ I, [2016-08-23T15:06:47.520831 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
995
+ I, [2016-08-23T15:06:47.521514 #26830] INFO -- : Processing by DummyController#crash as HTML
996
+ I, [2016-08-23T15:06:47.521794 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
997
+ F, [2016-08-23T15:06:47.524976 #26830] FATAL -- :
998
+ AirbrakeTestError (AirbrakeTestError):
999
+ lib/airbrake/rack/middleware.rb:22:in `call'
1000
+
1001
+
1002
+ I, [2016-08-23T15:06:47.631227 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
1003
+ I, [2016-08-23T15:06:47.631964 #26830] INFO -- : Processing by DummyController#crash as HTML
1004
+ I, [2016-08-23T15:06:47.632316 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1005
+ F, [2016-08-23T15:06:47.640560 #26830] FATAL -- :
1006
+ AirbrakeTestError (AirbrakeTestError):
1007
+ lib/airbrake/rack/middleware.rb:22:in `call'
1008
+
1009
+
1010
+ I, [2016-08-23T15:06:47.642117 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
1011
+ I, [2016-08-23T15:06:47.642633 #26830] INFO -- : Processing by DummyController#crash as HTML
1012
+ I, [2016-08-23T15:06:47.642861 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1013
+ F, [2016-08-23T15:06:47.645983 #26830] FATAL -- :
1014
+ AirbrakeTestError (AirbrakeTestError):
1015
+ lib/airbrake/rack/middleware.rb:22:in `call'
1016
+
1017
+
1018
+ I, [2016-08-23T15:06:47.753122 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
1019
+ I, [2016-08-23T15:06:47.753864 #26830] INFO -- : Processing by DummyController#crash as HTML
1020
+ I, [2016-08-23T15:06:47.754198 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1021
+ F, [2016-08-23T15:06:47.762948 #26830] FATAL -- :
1022
+ AirbrakeTestError (AirbrakeTestError):
1023
+ lib/airbrake/rack/middleware.rb:22:in `call'
1024
+
1025
+
1026
+ I, [2016-08-23T15:06:47.764667 #26830] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 15:06:47 +0300
1027
+ I, [2016-08-23T15:06:47.765258 #26830] INFO -- : Processing by DummyController#delayed_job as HTML
1028
+ I, [2016-08-23T15:06:47.779431 #26830] INFO -- : Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms)
1029
+ F, [2016-08-23T15:06:47.783701 #26830] FATAL -- :
1030
+ AirbrakeTestError (delayed_job error):
1031
+ lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
1032
+ lib/airbrake/rack/middleware.rb:22:in `call'
1033
+
1034
+
1035
+ I, [2016-08-23T15:06:51.794124 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:51 +0300
1036
+ I, [2016-08-23T15:06:51.794878 #26830] INFO -- : Processing by DummyController#crash as HTML
1037
+ I, [2016-08-23T15:06:51.795183 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1038
+ F, [2016-08-23T15:06:51.804833 #26830] FATAL -- :
1039
+ AirbrakeTestError (AirbrakeTestError):
1040
+ lib/airbrake/rack/middleware.rb:22:in `call'
1041
+
1042
+
1043
+ I, [2016-08-23T15:06:51.806635 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:51 +0300
1044
+ I, [2016-08-23T15:06:51.807200 #26830] INFO -- : Processing by DummyController#crash as HTML
1045
+ I, [2016-08-23T15:06:51.807463 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1046
+ F, [2016-08-23T15:06:51.810623 #26830] FATAL -- :
1047
+ AirbrakeTestError (AirbrakeTestError):
1048
+ lib/airbrake/rack/middleware.rb:22:in `call'
1049
+
1050
+
1051
+ I, [2016-08-23T15:06:51.916646 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:51 +0300
1052
+ I, [2016-08-23T15:06:51.917321 #26830] INFO -- : Processing by DummyController#crash as HTML
1053
+ I, [2016-08-23T15:06:51.917639 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1054
+ F, [2016-08-23T15:06:51.925503 #26830] FATAL -- :
1055
+ AirbrakeTestError (AirbrakeTestError):
1056
+ lib/airbrake/rack/middleware.rb:22:in `call'
1057
+
1058
+
1059
+ I, [2016-08-23T15:06:51.927014 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:51 +0300
1060
+ I, [2016-08-23T15:06:51.927381 #26830] INFO -- : Processing by DummyController#crash as HTML
1061
+ I, [2016-08-23T15:06:51.927571 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1062
+ F, [2016-08-23T15:06:51.930263 #26830] FATAL -- :
1063
+ AirbrakeTestError (AirbrakeTestError):
1064
+ lib/airbrake/rack/middleware.rb:22:in `call'
1065
+
1066
+
1067
+ I, [2016-08-23T15:06:52.033742 #26830] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 15:06:52 +0300
1068
+ I, [2016-08-23T15:06:52.034508 #26830] INFO -- : Processing by DummyController#index as HTML
1069
+ I, [2016-08-23T15:06:52.035483 #26830] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
1070
+ I, [2016-08-23T15:06:52.035796 #26830] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1071
+ I, [2016-08-23T15:06:52.043567 #26830] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:52 +0300
1072
+ I, [2016-08-23T15:06:52.045316 #26830] INFO -- : Processing by DummyController#crash as HTML
1073
+ I, [2016-08-23T15:06:52.045600 #26830] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1074
+ F, [2016-08-23T15:06:52.052329 #26830] FATAL -- :
1075
+ AirbrakeTestError (AirbrakeTestError):
1076
+ lib/airbrake/rack/middleware.rb:22:in `call'
1077
+
1078
+
1079
+ I, [2016-08-23T15:06:52.158554 #26830] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:52 +0300
1080
+ I, [2016-08-23T15:06:52.159440 #26830] INFO -- : Processing by DummyController#active_job as HTML
1081
+ I, [2016-08-23T15:06:52.174697 #26830] INFO -- : Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
1082
+ F, [2016-08-23T15:06:52.178420 #26830] FATAL -- :
1083
+ AirbrakeTestError (active_job error):
1084
+ lib/airbrake/rack/middleware.rb:22:in `call'
1085
+
1086
+
1087
+ I, [2016-08-23T15:06:54.184780 #26830] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:54 +0300
1088
+ I, [2016-08-23T15:06:54.185501 #26830] INFO -- : Processing by DummyController#active_job as HTML
1089
+ I, [2016-08-23T15:06:54.189565 #26830] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1090
+ F, [2016-08-23T15:06:54.193955 #26830] FATAL -- :
1091
+ AirbrakeTestError (active_job error):
1092
+ lib/airbrake/rack/middleware.rb:22:in `call'
1093
+
1094
+
1095
+ I, [2016-08-23T15:06:56.202706 #26830] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:56 +0300
1096
+ I, [2016-08-23T15:06:56.203502 #26830] INFO -- : Processing by DummyController#active_job as HTML
1097
+ I, [2016-08-23T15:06:56.204446 #26830] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1098
+ F, [2016-08-23T15:06:56.206108 #26830] FATAL -- :
1099
+ AirbrakeTestError (active_job error):
1100
+ lib/airbrake/rack/middleware.rb:22:in `call'
1101
+
1102
+
1103
+ I, [2016-08-23T15:06:58.210699 #26830] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 15:06:58 +0300
1104
+ I, [2016-08-23T15:06:58.211391 #26830] INFO -- : Processing by DummyController#resque as HTML
1105
+ I, [2016-08-23T15:06:58.223626 #26830] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
1106
+ I, [2016-08-23T15:06:58.223875 #26830] INFO -- : Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1107
+ D, [2016-08-23T15:07:02.158608 #27131] DEBUG -- :  (0.2ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar) 
1108
+ D, [2016-08-23T15:07:02.162278 #27131] DEBUG -- :  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
1109
+ D, [2016-08-23T15:07:02.162470 #27131] DEBUG -- :  (0.0ms) select sqlite_version(*)
1110
+ D, [2016-08-23T15:07:02.162764 #27131] DEBUG -- :  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
1111
+ I, [2016-08-23T15:07:02.186570 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1112
+ I, [2016-08-23T15:07:02.194413 #27131] INFO -- : Processing by DummyController#crash as HTML
1113
+ I, [2016-08-23T15:07:02.195690 #27131] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1114
+ F, [2016-08-23T15:07:02.199287 #27131] FATAL -- :
1115
+ AirbrakeTestError (AirbrakeTestError):
1116
+ lib/airbrake/rack/middleware.rb:22:in `call'
1117
+
1118
+
1119
+ I, [2016-08-23T15:07:02.314273 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1120
+ I, [2016-08-23T15:07:02.315086 #27131] INFO -- : Processing by DummyController#crash as HTML
1121
+ I, [2016-08-23T15:07:02.315369 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1122
+ F, [2016-08-23T15:07:02.322583 #27131] FATAL -- :
1123
+ AirbrakeTestError (AirbrakeTestError):
1124
+ lib/airbrake/rack/middleware.rb:22:in `call'
1125
+
1126
+
1127
+ I, [2016-08-23T15:07:02.324540 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1128
+ I, [2016-08-23T15:07:02.325811 #27131] INFO -- : Processing by DummyController#crash as HTML
1129
+ I, [2016-08-23T15:07:02.326130 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1130
+ F, [2016-08-23T15:07:02.329239 #27131] FATAL -- :
1131
+ AirbrakeTestError (AirbrakeTestError):
1132
+ lib/airbrake/rack/middleware.rb:22:in `call'
1133
+
1134
+
1135
+ I, [2016-08-23T15:07:02.434209 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1136
+ I, [2016-08-23T15:07:02.434941 #27131] INFO -- : Processing by DummyController#crash as HTML
1137
+ I, [2016-08-23T15:07:02.435275 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1138
+ F, [2016-08-23T15:07:02.443279 #27131] FATAL -- :
1139
+ AirbrakeTestError (AirbrakeTestError):
1140
+ lib/airbrake/rack/middleware.rb:22:in `call'
1141
+
1142
+
1143
+ I, [2016-08-23T15:07:02.444957 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1144
+ I, [2016-08-23T15:07:02.445492 #27131] INFO -- : Processing by DummyController#crash as HTML
1145
+ I, [2016-08-23T15:07:02.445752 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1146
+ F, [2016-08-23T15:07:02.448676 #27131] FATAL -- :
1147
+ AirbrakeTestError (AirbrakeTestError):
1148
+ lib/airbrake/rack/middleware.rb:22:in `call'
1149
+
1150
+
1151
+ I, [2016-08-23T15:07:02.554433 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1152
+ I, [2016-08-23T15:07:02.555184 #27131] INFO -- : Processing by DummyController#crash as HTML
1153
+ I, [2016-08-23T15:07:02.555558 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1154
+ F, [2016-08-23T15:07:02.563432 #27131] FATAL -- :
1155
+ AirbrakeTestError (AirbrakeTestError):
1156
+ lib/airbrake/rack/middleware.rb:22:in `call'
1157
+
1158
+
1159
+ I, [2016-08-23T15:07:02.565246 #27131] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1160
+ I, [2016-08-23T15:07:02.565759 #27131] INFO -- : Processing by DummyController#index as HTML
1161
+ I, [2016-08-23T15:07:02.570269 #27131] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.8ms)
1162
+ I, [2016-08-23T15:07:02.570711 #27131] INFO -- : Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1163
+ I, [2016-08-23T15:07:02.572175 #27131] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:07:02 +0300
1164
+ I, [2016-08-23T15:07:02.572772 #27131] INFO -- : Processing by DummyController#active_job as HTML
1165
+ I, [2016-08-23T15:07:02.589460 #27131] INFO -- : Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
1166
+ F, [2016-08-23T15:07:02.893322 #27131] FATAL -- :
1167
+ SystemStackError (stack level too deep):
1168
+ lib/airbrake/rails/active_job.rb:19:in `block (2 levels) in <module:ActiveJob>'
1169
+ lib/airbrake/rack/middleware.rb:22:in `call'
1170
+
1171
+
1172
+ I, [2016-08-23T15:07:04.898415 #27131] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:07:04 +0300
1173
+ I, [2016-08-23T15:07:04.899162 #27131] INFO -- : Processing by DummyController#active_job as HTML
1174
+ I, [2016-08-23T15:07:04.911975 #27131] INFO -- : Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
1175
+ F, [2016-08-23T15:07:05.224637 #27131] FATAL -- :
1176
+ SystemStackError (stack level too deep):
1177
+ lib/airbrake/rails/active_job.rb:19:in `block (2 levels) in <module:ActiveJob>'
1178
+ lib/airbrake/rack/middleware.rb:22:in `call'
1179
+
1180
+
1181
+ I, [2016-08-23T15:07:10.239281 #27131] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:07:10 +0300
1182
+ I, [2016-08-23T15:07:10.239901 #27131] INFO -- : Processing by DummyController#active_job as HTML
1183
+ I, [2016-08-23T15:07:10.240590 #27131] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1184
+ F, [2016-08-23T15:07:10.241868 #27131] FATAL -- :
1185
+ AirbrakeTestError (active_job error):
1186
+ lib/airbrake/rack/middleware.rb:22:in `call'
1187
+
1188
+
1189
+ I, [2016-08-23T15:07:12.248794 #27131] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 15:07:12 +0300
1190
+ I, [2016-08-23T15:07:12.249678 #27131] INFO -- : Processing by DummyController#delayed_job as HTML
1191
+ I, [2016-08-23T15:07:12.268075 #27131] INFO -- : Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.3ms)
1192
+ F, [2016-08-23T15:07:12.271129 #27131] FATAL -- :
1193
+ AirbrakeTestError (delayed_job error):
1194
+ lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
1195
+ lib/airbrake/rack/middleware.rb:22:in `call'
1196
+
1197
+
1198
+ I, [2016-08-23T15:07:16.279171 #27131] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1199
+ I, [2016-08-23T15:07:16.280638 #27131] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1200
+ I, [2016-08-23T15:07:16.280682 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1201
+ I, [2016-08-23T15:07:16.290674 #27131] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1202
+ I, [2016-08-23T15:07:16.290919 #27131] INFO -- : Completed 200 OK in 10ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1203
+ I, [2016-08-23T15:07:16.293234 #27131] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1204
+ I, [2016-08-23T15:07:16.293901 #27131] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1205
+ I, [2016-08-23T15:07:16.293927 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1206
+ I, [2016-08-23T15:07:16.297037 #27131] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1207
+ I, [2016-08-23T15:07:16.297273 #27131] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1208
+ I, [2016-08-23T15:07:16.402959 #27131] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1209
+ I, [2016-08-23T15:07:16.403859 #27131] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1210
+ I, [2016-08-23T15:07:16.403897 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1211
+ I, [2016-08-23T15:07:16.411658 #27131] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1212
+ I, [2016-08-23T15:07:16.411946 #27131] INFO -- : Completed 200 OK in 8ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1213
+ I, [2016-08-23T15:07:16.413966 #27131] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1214
+ I, [2016-08-23T15:07:16.414590 #27131] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1215
+ I, [2016-08-23T15:07:16.414617 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1216
+ I, [2016-08-23T15:07:16.417772 #27131] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1217
+ I, [2016-08-23T15:07:16.418050 #27131] INFO -- : Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1218
+ I, [2016-08-23T15:07:16.524171 #27131] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1219
+ I, [2016-08-23T15:07:16.525094 #27131] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
1220
+ I, [2016-08-23T15:07:16.525130 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1221
+ I, [2016-08-23T15:07:16.529515 #27131] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
1222
+ I, [2016-08-23T15:07:16.529824 #27131] INFO -- : Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1223
+ I, [2016-08-23T15:07:16.633677 #27131] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1224
+ I, [2016-08-23T15:07:16.634592 #27131] INFO -- : Processing by DummyController#crash as HTML
1225
+ I, [2016-08-23T15:07:16.634629 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1226
+ I, [2016-08-23T15:07:16.634959 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1227
+ F, [2016-08-23T15:07:16.643391 #27131] FATAL -- :
1228
+ AirbrakeTestError (AirbrakeTestError):
1229
+ lib/airbrake/rack/middleware.rb:22:in `call'
1230
+
1231
+
1232
+ I, [2016-08-23T15:07:16.645202 #27131] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1233
+ I, [2016-08-23T15:07:16.645906 #27131] INFO -- : Processing by DummyController#crash as HTML
1234
+ I, [2016-08-23T15:07:16.645949 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1235
+ I, [2016-08-23T15:07:16.646196 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1236
+ F, [2016-08-23T15:07:16.649351 #27131] FATAL -- :
1237
+ AirbrakeTestError (AirbrakeTestError):
1238
+ lib/airbrake/rack/middleware.rb:22:in `call'
1239
+
1240
+
1241
+ I, [2016-08-23T15:07:16.658752 #27131] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1242
+ I, [2016-08-23T15:07:16.659578 #27131] INFO -- : Processing by DummyController#crash as HTML
1243
+ I, [2016-08-23T15:07:16.659608 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1244
+ I, [2016-08-23T15:07:16.659911 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1245
+ F, [2016-08-23T15:07:16.663677 #27131] FATAL -- :
1246
+ AirbrakeTestError (AirbrakeTestError):
1247
+ lib/airbrake/rack/middleware.rb:22:in `call'
1248
+
1249
+
1250
+ I, [2016-08-23T15:07:16.768740 #27131] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1251
+ I, [2016-08-23T15:07:16.769922 #27131] INFO -- : Processing by DummyController#crash as HTML
1252
+ I, [2016-08-23T15:07:16.769963 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1253
+ I, [2016-08-23T15:07:16.770423 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1254
+ F, [2016-08-23T15:07:16.782290 #27131] FATAL -- :
1255
+ AirbrakeTestError (AirbrakeTestError):
1256
+ lib/airbrake/rack/middleware.rb:22:in `call'
1257
+
1258
+
1259
+ I, [2016-08-23T15:07:16.784454 #27131] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1260
+ I, [2016-08-23T15:07:16.785267 #27131] INFO -- : Processing by DummyController#crash as HTML
1261
+ I, [2016-08-23T15:07:16.785296 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1262
+ I, [2016-08-23T15:07:16.785537 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1263
+ F, [2016-08-23T15:07:16.789551 #27131] FATAL -- :
1264
+ AirbrakeTestError (AirbrakeTestError):
1265
+ lib/airbrake/rack/middleware.rb:22:in `call'
1266
+
1267
+
1268
+ I, [2016-08-23T15:07:16.897478 #27131] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1269
+ I, [2016-08-23T15:07:16.898580 #27131] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1270
+ I, [2016-08-23T15:07:16.898617 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1271
+ I, [2016-08-23T15:07:16.909699 #27131] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
1272
+ I, [2016-08-23T15:07:16.909940 #27131] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1273
+ I, [2016-08-23T15:07:16.912291 #27131] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1274
+ I, [2016-08-23T15:07:16.912933 #27131] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1275
+ I, [2016-08-23T15:07:16.912961 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1276
+ I, [2016-08-23T15:07:16.923064 #27131] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1277
+ I, [2016-08-23T15:07:16.923393 #27131] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1278
+ I, [2016-08-23T15:07:16.925463 #27131] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1279
+ I, [2016-08-23T15:07:16.926096 #27131] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1280
+ I, [2016-08-23T15:07:16.926221 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1281
+ I, [2016-08-23T15:07:16.933952 #27131] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1282
+ I, [2016-08-23T15:07:16.934179 #27131] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1283
+ I, [2016-08-23T15:07:16.936127 #27131] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1284
+ I, [2016-08-23T15:07:16.936772 #27131] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1285
+ I, [2016-08-23T15:07:16.936799 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1286
+ I, [2016-08-23T15:07:16.943024 #27131] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1287
+ I, [2016-08-23T15:07:16.943270 #27131] INFO -- : Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1288
+ I, [2016-08-23T15:07:16.945053 #27131] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1289
+ I, [2016-08-23T15:07:16.945623 #27131] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
1290
+ I, [2016-08-23T15:07:16.945650 #27131] INFO -- : Parameters: {"foo"=>"bar"}
1291
+ I, [2016-08-23T15:07:16.951888 #27131] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
1292
+ I, [2016-08-23T15:07:16.952108 #27131] INFO -- : Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1293
+ I, [2016-08-23T15:07:16.954590 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:16 +0300
1294
+ I, [2016-08-23T15:07:16.955506 #27131] INFO -- : Processing by DummyController#crash as HTML
1295
+ I, [2016-08-23T15:07:16.955751 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1296
+ F, [2016-08-23T15:07:16.958656 #27131] FATAL -- :
1297
+ AirbrakeTestError (AirbrakeTestError):
1298
+ lib/airbrake/rack/middleware.rb:22:in `call'
1299
+
1300
+
1301
+ I, [2016-08-23T15:07:17.066495 #27131] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1302
+ I, [2016-08-23T15:07:17.067550 #27131] INFO -- : Processing by DummyController#resque as HTML
1303
+ I, [2016-08-23T15:07:17.078775 #27131] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.3ms)
1304
+ I, [2016-08-23T15:07:17.079030 #27131] INFO -- : Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1305
+ I, [2016-08-23T15:07:17.081359 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1306
+ I, [2016-08-23T15:07:17.081898 #27131] INFO -- : Processing by DummyController#crash as HTML
1307
+ I, [2016-08-23T15:07:17.082218 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1308
+ F, [2016-08-23T15:07:17.087066 #27131] FATAL -- :
1309
+ AirbrakeTestError (AirbrakeTestError):
1310
+ lib/airbrake/rack/middleware.rb:22:in `call'
1311
+
1312
+
1313
+ I, [2016-08-23T15:07:17.193074 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1314
+ I, [2016-08-23T15:07:17.193758 #27131] INFO -- : Processing by DummyController#crash as HTML
1315
+ I, [2016-08-23T15:07:17.194071 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1316
+ F, [2016-08-23T15:07:17.200853 #27131] FATAL -- :
1317
+ AirbrakeTestError (AirbrakeTestError):
1318
+ lib/airbrake/rack/middleware.rb:22:in `call'
1319
+
1320
+
1321
+ I, [2016-08-23T15:07:17.202479 #27131] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1322
+ I, [2016-08-23T15:07:17.202923 #27131] INFO -- : Processing by DummyController#crash as HTML
1323
+ I, [2016-08-23T15:07:17.203228 #27131] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1324
+ F, [2016-08-23T15:07:17.206007 #27131] FATAL -- :
1325
+ AirbrakeTestError (AirbrakeTestError):
1326
+ lib/airbrake/rack/middleware.rb:22:in `call'
1327
+
1328
+
1329
+ I, [2016-08-23T15:07:17.313232 #27131] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1330
+ I, [2016-08-23T15:07:17.314039 #27131] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
1331
+ D, [2016-08-23T15:07:17.314314 #27131] DEBUG -- :  (0.1ms) begin transaction
1332
+ D, [2016-08-23T15:07:17.317812 #27131] DEBUG -- : SQL (0.1ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bango"]]
1333
+ D, [2016-08-23T15:07:17.318063 #27131] DEBUG -- :  (0.0ms) rollback transaction
1334
+ I, [2016-08-23T15:07:17.318387 #27131] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.3ms)
1335
+ F, [2016-08-23T15:07:17.330234 #27131] FATAL -- :
1336
+ AirbrakeTestError (after_rollback):
1337
+ lib/airbrake/rack/middleware.rb:22:in `call'
1338
+
1339
+
1340
+ I, [2016-08-23T15:07:17.332162 #27131] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 15:07:17 +0300
1341
+ I, [2016-08-23T15:07:17.332839 #27131] INFO -- : Processing by DummyController#active_record_after_commit as HTML
1342
+ D, [2016-08-23T15:07:17.333173 #27131] DEBUG -- :  (0.1ms) begin transaction
1343
+ D, [2016-08-23T15:07:17.333556 #27131] DEBUG -- : SQL (0.0ms) INSERT INTO "books" ("title") VALUES (?) [["title", "Bingo"]]
1344
+ D, [2016-08-23T15:07:17.333722 #27131] DEBUG -- :  (0.0ms) commit transaction
1345
+ I, [2016-08-23T15:07:17.334028 #27131] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1346
+ F, [2016-08-23T15:07:17.338374 #27131] FATAL -- :
1347
+ AirbrakeTestError (after_commit):
1348
+ lib/airbrake/rack/middleware.rb:22:in `call'
1349
+
1350
+