airbrake 7.2.1 → 7.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/airbrake/sidekiq.rb +3 -1
- data/lib/airbrake/sidekiq/retryable_jobs_filter.rb +45 -0
- data/lib/airbrake/version.rb +1 -1
- data/spec/apps/rails/logs/32.log +6 -0
- data/spec/apps/rails/logs/40.log +708 -4
- data/spec/apps/rails/logs/41.log +1 -0
- data/spec/apps/rails/logs/42.log +198 -17
- data/spec/apps/rails/logs/51.log +1558 -733
- data/spec/integration/rails/rails_spec.rb +4 -0
- data/spec/unit/sidekiq/retryable_jobs_filter_spec.rb +38 -0
- metadata +23 -6
- data/spec/apps/rails/logs/50.log +0 -6611
- data/spec/apps/rails/logs/52.log +0 -3201
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 316526ced825ff8d483c8c39ef8cb91b28b87061
|
4
|
+
data.tar.gz: 3684b014f533480b1ab68807f2e1a44f401eca67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2ed502c4b11e5984b67f51b88221e44a1c9cae42838c100b843a7fd9c3972c06a9a9a9927b37f67b211a20f994f4c5643a3be53f107e9383286ab5aacdd84d7
|
7
|
+
data.tar.gz: 3092845ca44854b3229a554ee8ee6623114b5db97605a4f871e3c6d390cc385c146bc33beaa617308d6cca8aa39f085c86700e2365eea2daedf43c13de99a811
|
data/lib/airbrake/sidekiq.rb
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
require 'airbrake/sidekiq/retryable_jobs_filter'
|
2
|
+
|
1
3
|
module Airbrake
|
2
4
|
module Sidekiq
|
3
5
|
##
|
4
|
-
# Provides integration with Sidekiq
|
6
|
+
# Provides integration with Sidekiq v2+.
|
5
7
|
class ErrorHandler
|
6
8
|
# rubocop:disable Lint/RescueException
|
7
9
|
def call(_worker, context, _queue)
|
@@ -0,0 +1,45 @@
|
|
1
|
+
module Airbrake
|
2
|
+
module Sidekiq
|
3
|
+
##
|
4
|
+
# Filter that can ignore notices from jobs that failed but will be retried
|
5
|
+
# by Sidekiq
|
6
|
+
# @since v7.3.0
|
7
|
+
class RetryableJobsFilter
|
8
|
+
if Gem::Version.new(::Sidekiq::VERSION) < Gem::Version.new('5.0.0')
|
9
|
+
require 'sidekiq/middleware/server/retry_jobs'
|
10
|
+
DEFAULT_MAX_RETRY_ATTEMPTS = \
|
11
|
+
::Sidekiq::Middleware::Server::RetryJobs::DEFAULT_MAX_RETRY_ATTEMPTS
|
12
|
+
else
|
13
|
+
require 'sidekiq/job_retry'
|
14
|
+
DEFAULT_MAX_RETRY_ATTEMPTS = ::Sidekiq::JobRetry::DEFAULT_MAX_RETRY_ATTEMPTS
|
15
|
+
end
|
16
|
+
|
17
|
+
def call(notice)
|
18
|
+
job = notice[:params][:job]
|
19
|
+
|
20
|
+
notice.ignore! if retryable?(job)
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def retryable?(job)
|
26
|
+
return false unless job && job['retry']
|
27
|
+
|
28
|
+
max_attempts = max_attempts_for(job)
|
29
|
+
job['retry_count'] < max_attempts
|
30
|
+
end
|
31
|
+
|
32
|
+
def max_attempts_for(job)
|
33
|
+
if job['retry'].is_a?(Integer)
|
34
|
+
job['retry']
|
35
|
+
else
|
36
|
+
max_retries
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def max_retries
|
41
|
+
@max_retries ||= ::Sidekiq.options[:max_retries] || DEFAULT_MAX_RETRY_ATTEMPTS
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/lib/airbrake/version.rb
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
# Logfile created on 2018-04-14 02:02:06 +0300 by logger.rb/56815
|
2
|
+
Connecting to database specified by DATABASE_URL
|
3
|
+
[1m[36m (1.2ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
|
5
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
data/spec/apps/rails/logs/40.log
CHANGED
@@ -1,4 +1,708 @@
|
|
1
|
-
# Logfile created on
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# Logfile created on 2018-04-14 02:01:54 +0300 by logger.rb/56815
|
2
|
+
I, [2018-04-14T02:09:27.071541 #70270] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-04-14 02:09:27 +0300
|
3
|
+
F, [2018-04-14T02:09:27.072732 #70270] FATAL -- :
|
4
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
5
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
6
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
7
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
8
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
9
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
10
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
11
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
12
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
13
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3732380594215205798__call__callbacks'
|
14
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
15
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
16
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
17
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
18
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
19
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
20
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
21
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
22
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
23
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
24
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
25
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
26
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
27
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
28
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
29
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
30
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
31
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
32
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
33
|
+
spec/integration/rails/rails_spec.rb:207:in `block (3 levels) in <top (required)>'
|
34
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `instance_exec'
|
35
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `block in run'
|
36
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
37
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
38
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
39
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
40
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
41
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
42
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
43
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
44
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
45
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
46
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
47
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
48
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
49
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
50
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
51
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
52
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
53
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
54
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
55
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
56
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
57
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
58
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
59
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
60
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
61
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
62
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
63
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
64
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
65
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
66
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
67
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
68
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
69
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
70
|
+
|
71
|
+
|
72
|
+
I, [2018-04-14T02:09:32.080922 #70270] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-04-14 02:09:32 +0300
|
73
|
+
F, [2018-04-14T02:09:32.082924 #70270] FATAL -- :
|
74
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
75
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
76
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
77
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
78
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
79
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
80
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
81
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
82
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
83
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3732380594215205798__call__callbacks'
|
84
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
85
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
86
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
87
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
88
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
89
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
90
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
91
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
92
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
93
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
94
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
95
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
96
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
97
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
98
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
99
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
100
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
101
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
102
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
103
|
+
spec/integration/rails/rails_spec.rb:244:in `block (4 levels) in <top (required)>'
|
104
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `instance_exec'
|
105
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `block in run'
|
106
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
107
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
108
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
109
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
110
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
111
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
112
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
113
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
114
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
115
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
116
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
117
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
118
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
119
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
120
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
121
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
122
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
123
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
124
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
125
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
126
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
127
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
128
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
129
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
130
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
131
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
132
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
133
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
134
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
135
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
136
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
137
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
138
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
139
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
140
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
141
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
142
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
143
|
+
|
144
|
+
|
145
|
+
I, [2018-04-14T02:09:34.088177 #70270] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2018-04-14 02:09:34 +0300
|
146
|
+
F, [2018-04-14T02:09:34.089457 #70270] FATAL -- :
|
147
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
148
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
149
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
150
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
151
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
152
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
153
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
154
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
155
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
156
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3732380594215205798__call__callbacks'
|
157
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
158
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
159
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
160
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
161
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
162
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
163
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
164
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
165
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
166
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
167
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
168
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
169
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
170
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
171
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
172
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
173
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
174
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
175
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
176
|
+
spec/integration/rails/rails_spec.rb:31:in `block (3 levels) in <top (required)>'
|
177
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
178
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
179
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:350:in `run'
|
180
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:509:in `block in run_owned_hooks_for'
|
181
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `each'
|
182
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `run_owned_hooks_for'
|
183
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:595:in `block in run_example_hooks_for'
|
184
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `reverse_each'
|
185
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `run_example_hooks_for'
|
186
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:464:in `run'
|
187
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:494:in `run_before_example'
|
188
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:253:in `block in run'
|
189
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
190
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
191
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
192
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
193
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
194
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
195
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
196
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
197
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
198
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
199
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
200
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
201
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
202
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
203
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
204
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
205
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
206
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
207
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
208
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
209
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
210
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
211
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
212
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
213
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
214
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
215
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
216
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
217
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
218
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
219
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
220
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
221
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
222
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
223
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
224
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
225
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
226
|
+
|
227
|
+
|
228
|
+
I, [2018-04-14T02:09:41.452852 #70465] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-04-14 02:09:41 +0300
|
229
|
+
F, [2018-04-14T02:09:41.454074 #70465] FATAL -- :
|
230
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
231
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
232
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
233
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
234
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
235
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
236
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
237
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
238
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
239
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4035229903454948032__call__callbacks'
|
240
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
241
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
242
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
243
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
244
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
245
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
246
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
247
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
248
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
249
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
250
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
251
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
252
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
253
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
254
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
255
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
256
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
257
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
258
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
259
|
+
spec/integration/rails/rails_spec.rb:207:in `block (3 levels) in <top (required)>'
|
260
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `instance_exec'
|
261
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `block in run'
|
262
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
263
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
264
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
265
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
266
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
267
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
268
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
269
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
270
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
271
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
272
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
273
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
274
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
275
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
276
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
277
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
278
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
279
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
280
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
281
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
282
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
283
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
284
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
285
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
286
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
287
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
288
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
289
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
290
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
291
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
292
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
293
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
294
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
295
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
296
|
+
|
297
|
+
|
298
|
+
I, [2018-04-14T02:09:46.464465 #70465] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2018-04-14 02:09:46 +0300
|
299
|
+
F, [2018-04-14T02:09:46.466346 #70465] FATAL -- :
|
300
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
301
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
302
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
303
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
304
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
305
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
306
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
307
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
308
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
309
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4035229903454948032__call__callbacks'
|
310
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
311
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
312
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
313
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
314
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
315
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
316
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
317
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
318
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
319
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
320
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
321
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
322
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
323
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
324
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
325
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
326
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
327
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
328
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
329
|
+
spec/integration/rails/rails_spec.rb:244:in `block (4 levels) in <top (required)>'
|
330
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `instance_exec'
|
331
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:254:in `block in run'
|
332
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
333
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
334
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
335
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
336
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
337
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
338
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
339
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
340
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
341
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
342
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
343
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
344
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
345
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
346
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
347
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
348
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
349
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
350
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
351
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
352
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
353
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
354
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
355
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
356
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
357
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
358
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
359
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
360
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
361
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
362
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
363
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
364
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
365
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
366
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
367
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
368
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
369
|
+
|
370
|
+
|
371
|
+
I, [2018-04-14T02:09:59.365849 #70533] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-04-14 02:09:59 +0300
|
372
|
+
F, [2018-04-14T02:09:59.367234 #70533] FATAL -- :
|
373
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
374
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
375
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
376
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
377
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
378
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
379
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
380
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
381
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
382
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__699804397182584095__call__callbacks'
|
383
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
384
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
385
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
386
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
387
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
388
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
389
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
390
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
391
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
392
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
393
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
394
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
395
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
396
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
397
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
398
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
399
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
400
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
401
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
402
|
+
spec/integration/shared_examples/rack_examples.rb:49:in `block (4 levels) in <top (required)>'
|
403
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
404
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
405
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:350:in `run'
|
406
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:509:in `block in run_owned_hooks_for'
|
407
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `each'
|
408
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `run_owned_hooks_for'
|
409
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:595:in `block in run_example_hooks_for'
|
410
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `reverse_each'
|
411
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `run_example_hooks_for'
|
412
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:464:in `run'
|
413
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:494:in `run_before_example'
|
414
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:253:in `block in run'
|
415
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
416
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
417
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
418
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
419
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
420
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
421
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
422
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
423
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
424
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
425
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
426
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
427
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
428
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
429
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
430
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
431
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
432
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
433
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
434
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
435
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
436
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
437
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
438
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
439
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
440
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
441
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
442
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
443
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
444
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
445
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
446
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
447
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
448
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
449
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
450
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
451
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
452
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
453
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
454
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
455
|
+
|
456
|
+
|
457
|
+
I, [2018-04-14T02:10:02.372615 #70533] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-04-14 02:10:02 +0300
|
458
|
+
F, [2018-04-14T02:10:02.373856 #70533] FATAL -- :
|
459
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
460
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
461
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
462
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
463
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
464
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
465
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
466
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
467
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
468
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__699804397182584095__call__callbacks'
|
469
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
470
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
471
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
472
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
473
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
474
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
475
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
476
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
477
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
478
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
479
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
480
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
481
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
482
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
483
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
484
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
485
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
486
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
487
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
488
|
+
spec/integration/shared_examples/rack_examples.rb:49:in `block (4 levels) in <top (required)>'
|
489
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
490
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
491
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:350:in `run'
|
492
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:509:in `block in run_owned_hooks_for'
|
493
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `each'
|
494
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `run_owned_hooks_for'
|
495
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:595:in `block in run_example_hooks_for'
|
496
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `reverse_each'
|
497
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `run_example_hooks_for'
|
498
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:464:in `run'
|
499
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:494:in `run_before_example'
|
500
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:253:in `block in run'
|
501
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
502
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
503
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
504
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
505
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
506
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
507
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
508
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
509
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
510
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
511
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
512
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
513
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
514
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
515
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
516
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
517
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
518
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
519
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
520
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
521
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
522
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
523
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
524
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
525
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
526
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
527
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
528
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
529
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
530
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
531
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
532
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
533
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
534
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
535
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
536
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
537
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
538
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
539
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
540
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
541
|
+
|
542
|
+
|
543
|
+
I, [2018-04-14T02:10:05.380585 #70533] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-04-14 02:10:05 +0300
|
544
|
+
F, [2018-04-14T02:10:05.382134 #70533] FATAL -- :
|
545
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
546
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
547
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
548
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
549
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
550
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
551
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
552
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
553
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
554
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__699804397182584095__call__callbacks'
|
555
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
556
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
557
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
558
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
559
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
560
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
561
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
562
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
563
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
564
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
565
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
566
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
567
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
568
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
569
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
570
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
571
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
572
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
573
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
574
|
+
spec/integration/shared_examples/rack_examples.rb:89:in `block (4 levels) in <top (required)>'
|
575
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
576
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
577
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:350:in `run'
|
578
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:509:in `block in run_owned_hooks_for'
|
579
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `each'
|
580
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `run_owned_hooks_for'
|
581
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:595:in `block in run_example_hooks_for'
|
582
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `reverse_each'
|
583
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `run_example_hooks_for'
|
584
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:464:in `run'
|
585
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:494:in `run_before_example'
|
586
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:253:in `block in run'
|
587
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
588
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
589
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
590
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
591
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
592
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
593
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
594
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
595
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
596
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
597
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
598
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
599
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
600
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
601
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
602
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
603
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
604
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
605
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
606
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
607
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
608
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
609
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
610
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
611
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
612
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
613
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
614
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
615
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
616
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
617
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
618
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
619
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
620
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
621
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
622
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
623
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
624
|
+
|
625
|
+
|
626
|
+
I, [2018-04-14T02:10:08.389481 #70533] INFO -- : Started GET "/crash" for 127.0.0.1 at 2018-04-14 02:10:08 +0300
|
627
|
+
F, [2018-04-14T02:10:08.391752 #70533] FATAL -- :
|
628
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
629
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
|
630
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
|
631
|
+
activerecord (4.0.13) lib/active_record/connection_handling.rb:53:in `connection'
|
632
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
|
633
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:43:in `rescue in call'
|
634
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:32:in `call'
|
635
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
636
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
637
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__699804397182584095__call__callbacks'
|
638
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
639
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
640
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
641
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
642
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
643
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
644
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
645
|
+
railties (4.0.13) lib/rails/rack/logger.rb:22:in `call'
|
646
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
647
|
+
rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
|
648
|
+
rack (1.5.5) lib/rack/runtime.rb:17:in `call'
|
649
|
+
rack (1.5.5) lib/rack/lock.rb:17:in `call'
|
650
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
651
|
+
rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
|
652
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
653
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
654
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
655
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
656
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
657
|
+
spec/integration/shared_examples/rack_examples.rb:89:in `block (4 levels) in <top (required)>'
|
658
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
659
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
660
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:350:in `run'
|
661
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:509:in `block in run_owned_hooks_for'
|
662
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `each'
|
663
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:508:in `run_owned_hooks_for'
|
664
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:595:in `block in run_example_hooks_for'
|
665
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `reverse_each'
|
666
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:594:in `run_example_hooks_for'
|
667
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:464:in `run'
|
668
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:494:in `run_before_example'
|
669
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:253:in `block in run'
|
670
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'
|
671
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'
|
672
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `block in run'
|
673
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:606:in `block in run_around_example_hooks_for'
|
674
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
675
|
+
rspec-wait (0.0.9) lib/rspec/wait.rb:46:in `block (2 levels) in <top (required)>'
|
676
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
677
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:447:in `instance_exec'
|
678
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:375:in `execute_with'
|
679
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
|
680
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:342:in `call'
|
681
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
|
682
|
+
rspec-core (3.7.1) lib/rspec/core/hooks.rb:466:in `run'
|
683
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:457:in `with_around_example_hooks'
|
684
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
|
685
|
+
rspec-core (3.7.1) lib/rspec/core/example.rb:251:in `run'
|
686
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:628:in `block in run_examples'
|
687
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `map'
|
688
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:624:in `run_examples'
|
689
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:590:in `run'
|
690
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
691
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
692
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
693
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `block in run'
|
694
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `map'
|
695
|
+
rspec-core (3.7.1) lib/rspec/core/example_group.rb:591:in `run'
|
696
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
|
697
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `map'
|
698
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
|
699
|
+
rspec-core (3.7.1) lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
|
700
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:113:in `block in run_specs'
|
701
|
+
rspec-core (3.7.1) lib/rspec/core/reporter.rb:79:in `report'
|
702
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:112:in `run_specs'
|
703
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:87:in `run'
|
704
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:71:in `run'
|
705
|
+
rspec-core (3.7.1) lib/rspec/core/runner.rb:45:in `invoke'
|
706
|
+
rspec-core (3.7.1) exe/rspec:4:in `<main>'
|
707
|
+
|
708
|
+
|