activejob-retriable 5.0.0 → 5.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_job/retriable/test_helper.rb +3 -26
- data/lib/active_job/retriable/version.rb +1 -1
- metadata +40 -42
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -870
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ad099bd469fcbbb47a1be0f19a03eff688cba61
|
4
|
+
data.tar.gz: ab5b4fa990134cfa975e5a45a62f61bb34e81b49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18b1a7e2eec4fad7f871c0f636d941bab04637a5ba1ba213e76d7ebaa2a79247bd4d28e52f34021eadeffbeeed63391ccda73fe8f57382c57de4a636588af5e6
|
7
|
+
data.tar.gz: 31bc2d39599f2b2a69c8d1079a16d519000189e87164dc3b7cdc319eb85e50ffdb3ce21187b276ec08cdc0424db292574f62a4895ef93ab544d10d162121d121
|
@@ -3,33 +3,10 @@ require 'active_job/retriable/test_adapater'
|
|
3
3
|
module ActiveJob
|
4
4
|
module Retriable
|
5
5
|
module TestHelper
|
6
|
-
|
6
|
+
include ActiveJob::TestHelper
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
def before_setup
|
12
|
-
super
|
13
|
-
|
14
|
-
# Initialize our custom adapter
|
15
|
-
retriable_adapter = ActiveJob::Retriable::TestAdapter.new
|
16
|
-
|
17
|
-
# This is from active_job/test_helper
|
18
|
-
ActiveJob::Base.queue_adapter = retriable_adapter
|
19
|
-
ActiveJob::Base.subclasses.each do |klass|
|
20
|
-
# only override explicitly set adapters, a quirk of `class_attribute`
|
21
|
-
if klass.singleton_class.public_instance_methods(false).include?(:_queue_adapter)
|
22
|
-
klass.queue_adapter = retriable_adapter
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
clear_enqueued_jobs
|
27
|
-
clear_performed_jobs
|
28
|
-
end
|
29
|
-
|
30
|
-
def after_teardown
|
31
|
-
super
|
32
|
-
end
|
8
|
+
def queue_adapter_for_test
|
9
|
+
ActiveJob::Retriable::TestAdapter.new
|
33
10
|
end
|
34
11
|
end
|
35
12
|
end
|
metadata
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob-retriable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Coyne
|
8
|
+
- Cameron Craig
|
9
|
+
- SimplyBuilt
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
13
|
+
date: 2016-07-22 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: activejob
|
@@ -108,8 +110,6 @@ files:
|
|
108
110
|
- test/dummy/config/secrets.yml
|
109
111
|
- test/dummy/db/migrate/20150710003724_create_people.rb
|
110
112
|
- test/dummy/db/schema.rb
|
111
|
-
- test/dummy/db/test.sqlite3
|
112
|
-
- test/dummy/log/test.log
|
113
113
|
- test/dummy/public/404.html
|
114
114
|
- test/dummy/public/422.html
|
115
115
|
- test/dummy/public/500.html
|
@@ -137,58 +137,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
139
|
rubyforge_project:
|
140
|
-
rubygems_version: 2.5.
|
140
|
+
rubygems_version: 2.5.1
|
141
141
|
signing_key:
|
142
142
|
specification_version: 4
|
143
143
|
summary: Automatically retry failed jobs.
|
144
144
|
test_files:
|
145
145
|
- test/active_job/retriable/test_adapter_test.rb
|
146
146
|
- test/active_job/retriable_test.rb
|
147
|
-
- test/
|
148
|
-
- test/dummy/
|
149
|
-
- test/dummy/
|
150
|
-
- test/dummy/
|
151
|
-
- test/dummy/
|
152
|
-
- test/dummy/
|
153
|
-
- test/dummy/
|
154
|
-
- test/dummy/
|
147
|
+
- test/dummy/app/assets/javascripts/application.js
|
148
|
+
- test/dummy/app/assets/stylesheets/application.css
|
149
|
+
- test/dummy/app/controllers/application_controller.rb
|
150
|
+
- test/dummy/app/helpers/application_helper.rb
|
151
|
+
- test/dummy/app/jobs/application_job.rb
|
152
|
+
- test/dummy/app/jobs/callbacks_job.rb
|
153
|
+
- test/dummy/app/jobs/max_job.rb
|
154
|
+
- test/dummy/app/jobs/noop_job.rb
|
155
|
+
- test/dummy/app/jobs/raise_job.rb
|
156
|
+
- test/dummy/app/jobs/rescue_job.rb
|
157
|
+
- test/dummy/app/models/person.rb
|
158
|
+
- test/dummy/app/views/layouts/application.html.erb
|
159
|
+
- test/dummy/bin/bundle
|
160
|
+
- test/dummy/bin/rails
|
161
|
+
- test/dummy/bin/rake
|
162
|
+
- test/dummy/bin/setup
|
163
|
+
- test/dummy/config/application.rb
|
155
164
|
- test/dummy/config/boot.rb
|
165
|
+
- test/dummy/config/database.yml
|
166
|
+
- test/dummy/config/environment.rb
|
167
|
+
- test/dummy/config/environments/development.rb
|
168
|
+
- test/dummy/config/environments/production.rb
|
169
|
+
- test/dummy/config/environments/test.rb
|
170
|
+
- test/dummy/config/initializers/assets.rb
|
156
171
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
172
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
173
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
157
174
|
- test/dummy/config/initializers/inflections.rb
|
158
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
159
175
|
- test/dummy/config/initializers/mime_types.rb
|
160
|
-
- test/dummy/config/initializers/assets.rb
|
161
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
162
176
|
- test/dummy/config/initializers/session_store.rb
|
163
|
-
- test/dummy/config/initializers/
|
177
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
164
178
|
- test/dummy/config/locales/en.yml
|
165
|
-
- test/dummy/config/
|
166
|
-
- test/dummy/config/application.rb
|
179
|
+
- test/dummy/config/routes.rb
|
167
180
|
- test/dummy/config/secrets.yml
|
168
|
-
- test/dummy/config
|
169
|
-
- test/dummy/
|
170
|
-
- test/dummy/
|
171
|
-
- test/dummy/app/assets/stylesheets/application.css
|
172
|
-
- test/dummy/app/views/layouts/application.html.erb
|
173
|
-
- test/dummy/app/jobs/noop_job.rb
|
174
|
-
- test/dummy/app/jobs/max_job.rb
|
175
|
-
- test/dummy/app/jobs/application_job.rb
|
176
|
-
- test/dummy/app/jobs/raise_job.rb
|
177
|
-
- test/dummy/app/jobs/callbacks_job.rb
|
178
|
-
- test/dummy/app/jobs/rescue_job.rb
|
179
|
-
- test/dummy/app/controllers/application_controller.rb
|
180
|
-
- test/dummy/app/models/person.rb
|
181
|
-
- test/dummy/Rakefile
|
182
|
-
- test/dummy/README.rdoc
|
183
|
-
- test/dummy/public/422.html
|
184
|
-
- test/dummy/public/favicon.ico
|
181
|
+
- test/dummy/config.ru
|
182
|
+
- test/dummy/db/migrate/20150710003724_create_people.rb
|
183
|
+
- test/dummy/db/schema.rb
|
185
184
|
- test/dummy/public/404.html
|
185
|
+
- test/dummy/public/422.html
|
186
186
|
- test/dummy/public/500.html
|
187
|
-
- test/dummy/
|
188
|
-
- test/dummy/
|
189
|
-
- test/dummy/
|
190
|
-
- test/dummy/bin/rake
|
191
|
-
- test/dummy/bin/bundle
|
187
|
+
- test/dummy/public/favicon.ico
|
188
|
+
- test/dummy/Rakefile
|
189
|
+
- test/dummy/README.rdoc
|
192
190
|
- test/dummy/test/fixtures/people.yml
|
193
191
|
- test/dummy/test/models/person_test.rb
|
194
|
-
- test/
|
192
|
+
- test/test_helper.rb
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
data/test/dummy/log/test.log
DELETED
@@ -1,870 +0,0 @@
|
|
1
|
-
[1m[35m (122.3ms)[0m [1m[35mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2
|
-
[1m[35m (124.8ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
3
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
4
|
-
[1m[35m (133.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20150710003724')[0m
|
5
|
-
[1m[35m (131.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
6
|
-
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
7
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
8
|
-
[1m[35mSQL (0.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-07-18 19:06:48 UTC], ["updated_at", 2016-07-18 19:06:48 UTC]]
|
9
|
-
[1m[35m (128.4ms)[0m [1m[36mcommit transaction[0m
|
10
|
-
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
11
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
12
|
-
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
13
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
14
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
15
|
-
----------------------------------------------------------------------------
|
16
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_is_retried
|
17
|
-
----------------------------------------------------------------------------
|
18
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performing RescueJob from Test(default)
|
19
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performed RescueJob from Test(default) in 0.31ms
|
20
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performing RescueJob from Test(default)
|
21
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performed RescueJob from Test(default) in 0.34ms
|
22
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performing RescueJob from Test(default)
|
23
|
-
[ActiveJob] [RescueJob] [ae7bf33b-88fa-406e-82c7-3d963352dc5c] Performed RescueJob from Test(default) in 0.47ms
|
24
|
-
[ActiveJob] Enqueued RescueJob (Job ID: ae7bf33b-88fa-406e-82c7-3d963352dc5c) to Test(default) at 2016-07-18 20:06:48 UTC
|
25
|
-
[ActiveJob] Enqueued RescueJob (Job ID: ae7bf33b-88fa-406e-82c7-3d963352dc5c) to Test(default) at 2016-07-18 20:06:48 UTC
|
26
|
-
[ActiveJob] Enqueued RescueJob (Job ID: ae7bf33b-88fa-406e-82c7-3d963352dc5c) to Test(default) at 2016-07-18 20:06:48 UTC
|
27
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29
|
-
------------------------------------------------------------------------------
|
30
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_specified_max_retry
|
31
|
-
------------------------------------------------------------------------------
|
32
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
33
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.27ms
|
34
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 1)
|
35
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
36
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.31ms
|
37
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 2)
|
38
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
39
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.38ms
|
40
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 3)
|
41
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
42
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.46ms
|
43
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 4)
|
44
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
45
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.57ms
|
46
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 5)
|
47
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
48
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.64ms
|
49
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 6)
|
50
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
51
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.96ms
|
52
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 7)
|
53
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
54
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.79ms
|
55
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 8)
|
56
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
57
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.77ms
|
58
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 9)
|
59
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performing MaxJob from Test(default)
|
60
|
-
[ActiveJob] [MaxJob] [eae7e902-2704-40b2-b339-d95e69b62bfb] Performed MaxJob from Test(default) in 0.9ms
|
61
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [eae7e902-2704-40b2-b339-d95e69b62bfb] Retries exhauseted at 10 attempts
|
62
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
63
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
64
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
65
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
66
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
67
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
68
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
69
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
70
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
71
|
-
[ActiveJob] Enqueued MaxJob (Job ID: eae7e902-2704-40b2-b339-d95e69b62bfb) to Test(default) at 2016-07-18 20:59:54 UTC
|
72
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
73
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
74
|
-
---------------------------------------------------------------------------------------------
|
75
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_uses_custom_retry_wait_time
|
76
|
-
---------------------------------------------------------------------------------------------
|
77
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performing RescueJob from Test(default)
|
78
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performed RescueJob from Test(default) in 0.24ms
|
79
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performing RescueJob from Test(default)
|
80
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performed RescueJob from Test(default) in 0.29ms
|
81
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performing RescueJob from Test(default)
|
82
|
-
[ActiveJob] [RescueJob] [3035628f-68ff-419f-9298-13ec30388b3b] Performed RescueJob from Test(default) in 0.32ms
|
83
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3035628f-68ff-419f-9298-13ec30388b3b) to Test(default) at 2016-07-18 20:06:48 UTC
|
84
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3035628f-68ff-419f-9298-13ec30388b3b) to Test(default) at 2016-07-18 20:06:48 UTC
|
85
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3035628f-68ff-419f-9298-13ec30388b3b) to Test(default) at 2016-07-18 20:06:48 UTC
|
86
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
87
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
88
|
-
-----------------------------------------------------------------------------------
|
89
|
-
ActiveJob::RetriableTest: test_sets_current_exception_and_is_available_in_callbacks
|
90
|
-
-----------------------------------------------------------------------------------
|
91
|
-
[ActiveJob] [CallbacksJob] [7686a446-b049-4525-bb1e-10d854944160] Performing CallbacksJob from Test(default)
|
92
|
-
[ActiveJob] [CallbacksJob] [7686a446-b049-4525-bb1e-10d854944160] Performed CallbacksJob from Test(default) in 0.25ms
|
93
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: 7686a446-b049-4525-bb1e-10d854944160) to Test(default)
|
94
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
95
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
96
|
-
----------------------------------------------------
|
97
|
-
ActiveJob::RetriableTest: test_invokes_all_callbacks
|
98
|
-
----------------------------------------------------
|
99
|
-
[ActiveJob] [CallbacksJob] [537020f2-1192-4182-969c-7a34a0e10f46] Performing CallbacksJob from Test(default)
|
100
|
-
[ActiveJob] [CallbacksJob] [537020f2-1192-4182-969c-7a34a0e10f46] Performed CallbacksJob from Test(default) in 0.38ms
|
101
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: 537020f2-1192-4182-969c-7a34a0e10f46) to Test(default)
|
102
|
-
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
103
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
104
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
105
|
-
ActiveJob::RetriableTest: test_raises_exception_when_include_in_an_ActiveJob_with_an_adapter_that_does_not_support_an_enqueue_at_method
|
106
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
107
|
-
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
108
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
109
|
-
----------------------------------------------------------------------
|
110
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_DEFAULT_MAX
|
111
|
-
----------------------------------------------------------------------
|
112
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
113
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.24ms
|
114
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
|
115
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
116
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.29ms
|
117
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
|
118
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
119
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.31ms
|
120
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
|
121
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
122
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.4ms
|
123
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
|
124
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
125
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.25ms
|
126
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
|
127
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
128
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.44ms
|
129
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
|
130
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
131
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.56ms
|
132
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
|
133
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
134
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.65ms
|
135
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
|
136
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
137
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.67ms
|
138
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
|
139
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
140
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.74ms
|
141
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
|
142
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
143
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.81ms
|
144
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
|
145
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
146
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.76ms
|
147
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
|
148
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
149
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.8ms
|
150
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
|
151
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
152
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.94ms
|
153
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
|
154
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
155
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.91ms
|
156
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
|
157
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
158
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 0.96ms
|
159
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
|
160
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
161
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.03ms
|
162
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
|
163
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
164
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.08ms
|
165
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
|
166
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
167
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.11ms
|
168
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
|
169
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
170
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.12ms
|
171
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
|
172
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
173
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.17ms
|
174
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
|
175
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
176
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.25ms
|
177
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
|
178
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
179
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.25ms
|
180
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
|
181
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
182
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.28ms
|
183
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
|
184
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performing RaiseJob from Test(default)
|
185
|
-
[ActiveJob] [RaiseJob] [ea95909b-7b5f-4840-9b47-e747524c224b] Performed RaiseJob from Test(default) in 1.32ms
|
186
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [ea95909b-7b5f-4840-9b47-e747524c224b] Retries exhauseted at 25 attempts
|
187
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
188
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
189
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
190
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
191
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
192
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
193
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
194
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
195
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
196
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
197
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
198
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
199
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
200
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
201
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
202
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
203
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
204
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
205
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
206
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
207
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
208
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
209
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
210
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
211
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: ea95909b-7b5f-4840-9b47-e747524c224b) to Test(default) at 2016-07-22 15:19:36 UTC
|
212
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
213
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
214
|
-
--------------------------------------------------------------------------------------------------
|
215
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_queue_option
|
216
|
-
--------------------------------------------------------------------------------------------------
|
217
|
-
[ActiveJob] Enqueued NoopJob (Job ID: dea4c236-243f-463d-a5d9-0e861aa7aeac) to Test(default)
|
218
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
219
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
220
|
-
------------------------------------------------------------------------------------------------
|
221
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_job_option
|
222
|
-
------------------------------------------------------------------------------------------------
|
223
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 714e5a5b-cd97-4213-9298-a9d8c08fc6ae) to Test(default)
|
224
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
225
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
226
|
-
---------------------------------------------------------------------------
|
227
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_args_defined
|
228
|
-
---------------------------------------------------------------------------
|
229
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 5de1b0e5-1944-4739-b822-32addfddac8b) to Test(default)
|
230
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
231
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
232
|
-
----------------------------------------------------------------------------
|
233
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_queue_defined
|
234
|
-
----------------------------------------------------------------------------
|
235
|
-
[ActiveJob] [NoopJob] [aa36d5a5-3979-4560-be46-1a7f4da09564] Performing NoopJob from Test(default)
|
236
|
-
[ActiveJob] [NoopJob] [aa36d5a5-3979-4560-be46-1a7f4da09564] Performed NoopJob from Test(default) in 0.04ms
|
237
|
-
[ActiveJob] Enqueued NoopJob (Job ID: aa36d5a5-3979-4560-be46-1a7f4da09564) to Test(default)
|
238
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
239
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
240
|
-
-----------------------------------------------------------------------------------
|
241
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_with_wait_have_at_defined
|
242
|
-
-----------------------------------------------------------------------------------
|
243
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 369572e6-c5d5-4b52-912a-ca12c410fdc0) to Test(default) at 2016-07-18 20:06:48 UTC
|
244
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
245
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
246
|
-
-------------------------------------------------------------------------------------------------
|
247
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_args_option
|
248
|
-
-------------------------------------------------------------------------------------------------
|
249
|
-
[ActiveJob] Enqueued NoopJob (Job ID: ca33d5bf-fcea-4935-a5ab-5ca51a941e34) to Test(default)
|
250
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
251
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
252
|
-
----------------------------------------------------------------------------
|
253
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_queue_defined
|
254
|
-
----------------------------------------------------------------------------
|
255
|
-
[ActiveJob] Enqueued NoopJob (Job ID: cd6d0746-ac42-4e51-ae5d-9b0cf01225df) to Test(default)
|
256
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
257
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
258
|
-
-----------------------------------------------------------------------------------------------
|
259
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_at_option
|
260
|
-
-----------------------------------------------------------------------------------------------
|
261
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 56e53c0f-b353-4f22-b6b4-6604df4ce6f5) to Test(default) at 2016-07-19 12:00:00 UTC
|
262
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
263
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
264
|
-
---------------------------------------------------------------------------
|
265
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_args_defined
|
266
|
-
---------------------------------------------------------------------------
|
267
|
-
[ActiveJob] [NoopJob] [efd0335b-ac7d-4e94-b85f-0315d91ebeb2] Performing NoopJob from Test(default)
|
268
|
-
[ActiveJob] [NoopJob] [efd0335b-ac7d-4e94-b85f-0315d91ebeb2] Performed NoopJob from Test(default) in 0.04ms
|
269
|
-
[ActiveJob] Enqueued NoopJob (Job ID: efd0335b-ac7d-4e94-b85f-0315d91ebeb2) to Test(default)
|
270
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
271
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
272
|
-
--------------------------------------------------------------------------
|
273
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_job_defined
|
274
|
-
--------------------------------------------------------------------------
|
275
|
-
[ActiveJob] [NoopJob] [de015b50-7c05-48d7-b6d9-696215f058ac] Performing NoopJob from Test(default)
|
276
|
-
[ActiveJob] [NoopJob] [de015b50-7c05-48d7-b6d9-696215f058ac] Performed NoopJob from Test(default) in 0.03ms
|
277
|
-
[ActiveJob] Enqueued NoopJob (Job ID: de015b50-7c05-48d7-b6d9-696215f058ac) to Test(default)
|
278
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
279
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
280
|
-
------------------------------------------------------------------------------------
|
281
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_with_wait_have_at_defined
|
282
|
-
------------------------------------------------------------------------------------
|
283
|
-
[ActiveJob] [NoopJob] [a67d21b9-a470-4c73-b2dc-e1053bdd73ff] Performing NoopJob from Test(default)
|
284
|
-
[ActiveJob] [NoopJob] [a67d21b9-a470-4c73-b2dc-e1053bdd73ff] Performed NoopJob from Test(default) in 0.03ms
|
285
|
-
[ActiveJob] Enqueued NoopJob (Job ID: a67d21b9-a470-4c73-b2dc-e1053bdd73ff) to Test(default) at 2016-07-18 20:06:48 UTC
|
286
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
287
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
288
|
-
--------------------------------------------------------------------------
|
289
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_job_defined
|
290
|
-
--------------------------------------------------------------------------
|
291
|
-
[ActiveJob] Enqueued NoopJob (Job ID: b21fa81e-c435-4821-9efa-f9517ba26f22) to Test(default)
|
292
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
293
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
294
|
-
------------------------------------------------------------------------------------------------
|
295
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_performed_jobs_filtering
|
296
|
-
------------------------------------------------------------------------------------------------
|
297
|
-
[ActiveJob] Enqueued NoopJob (Job ID: e94cb68c-6ab9-4ff2-b4bb-ddc44ef39513) to Test(default)
|
298
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
299
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
300
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
301
|
-
----------------------------------------------------------------------
|
302
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_DEFAULT_MAX
|
303
|
-
----------------------------------------------------------------------
|
304
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
305
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.13ms
|
306
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
|
307
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
308
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.13ms
|
309
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
|
310
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
311
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.16ms
|
312
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
|
313
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
314
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.24ms
|
315
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
|
316
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
317
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.26ms
|
318
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
|
319
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
320
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.22ms
|
321
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
|
322
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
323
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.25ms
|
324
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
|
325
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
326
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.28ms
|
327
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
|
328
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
329
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.3ms
|
330
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
|
331
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
332
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.32ms
|
333
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
|
334
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
335
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.37ms
|
336
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
|
337
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
338
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.38ms
|
339
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
|
340
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
341
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.39ms
|
342
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
|
343
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
344
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.43ms
|
345
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
|
346
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
347
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.43ms
|
348
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
|
349
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
350
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.45ms
|
351
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
|
352
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
353
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.52ms
|
354
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
|
355
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
356
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.54ms
|
357
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
|
358
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
359
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.57ms
|
360
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
|
361
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
362
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.62ms
|
363
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
|
364
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
365
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.6ms
|
366
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
|
367
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
368
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.68ms
|
369
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
|
370
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
371
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.77ms
|
372
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
|
373
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
374
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.7ms
|
375
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
|
376
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performing RaiseJob from Test(default)
|
377
|
-
[ActiveJob] [RaiseJob] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Performed RaiseJob from Test(default) in 0.81ms
|
378
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [1a6a4fac-5f17-454d-8459-ceb06c263d23] Retries exhauseted at 25 attempts
|
379
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
380
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
381
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
382
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
383
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
384
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
385
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
386
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
387
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
388
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
389
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
390
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
391
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
392
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
393
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
394
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
395
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
396
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
397
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
398
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
399
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
400
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
401
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
402
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
403
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 1a6a4fac-5f17-454d-8459-ceb06c263d23) to Test(default) at 2016-07-22 15:27:19 UTC
|
404
|
-
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
405
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
406
|
-
----------------------------------------------------------------------------
|
407
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_is_retried
|
408
|
-
----------------------------------------------------------------------------
|
409
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performing RescueJob from Test(default)
|
410
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performed RescueJob from Test(default) in 0.13ms
|
411
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performing RescueJob from Test(default)
|
412
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performed RescueJob from Test(default) in 0.12ms
|
413
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performing RescueJob from Test(default)
|
414
|
-
[ActiveJob] [RescueJob] [f0665e7e-3b37-4625-bfc4-03e55a3884db] Performed RescueJob from Test(default) in 0.15ms
|
415
|
-
[ActiveJob] Enqueued RescueJob (Job ID: f0665e7e-3b37-4625-bfc4-03e55a3884db) to Test(default) at 2016-07-18 20:07:19 UTC
|
416
|
-
[ActiveJob] Enqueued RescueJob (Job ID: f0665e7e-3b37-4625-bfc4-03e55a3884db) to Test(default) at 2016-07-18 20:07:19 UTC
|
417
|
-
[ActiveJob] Enqueued RescueJob (Job ID: f0665e7e-3b37-4625-bfc4-03e55a3884db) to Test(default) at 2016-07-18 20:07:19 UTC
|
418
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
419
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
420
|
-
-----------------------------------------------------------------------------------
|
421
|
-
ActiveJob::RetriableTest: test_sets_current_exception_and_is_available_in_callbacks
|
422
|
-
-----------------------------------------------------------------------------------
|
423
|
-
[ActiveJob] [CallbacksJob] [31711607-bf4e-4aec-9083-28bc68e2ffc0] Performing CallbacksJob from Test(default)
|
424
|
-
[ActiveJob] [CallbacksJob] [31711607-bf4e-4aec-9083-28bc68e2ffc0] Performed CallbacksJob from Test(default) in 0.17ms
|
425
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: 31711607-bf4e-4aec-9083-28bc68e2ffc0) to Test(default)
|
426
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
427
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
428
|
-
---------------------------------------------------------------------------------------------
|
429
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_uses_custom_retry_wait_time
|
430
|
-
---------------------------------------------------------------------------------------------
|
431
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performing RescueJob from Test(default)
|
432
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performed RescueJob from Test(default) in 0.18ms
|
433
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performing RescueJob from Test(default)
|
434
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performed RescueJob from Test(default) in 0.24ms
|
435
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performing RescueJob from Test(default)
|
436
|
-
[ActiveJob] [RescueJob] [3cfbf97d-f9f2-4994-b82f-fb936c37dbd3] Performed RescueJob from Test(default) in 0.24ms
|
437
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3cfbf97d-f9f2-4994-b82f-fb936c37dbd3) to Test(default) at 2016-07-18 20:07:19 UTC
|
438
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3cfbf97d-f9f2-4994-b82f-fb936c37dbd3) to Test(default) at 2016-07-18 20:07:19 UTC
|
439
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 3cfbf97d-f9f2-4994-b82f-fb936c37dbd3) to Test(default) at 2016-07-18 20:07:19 UTC
|
440
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
441
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
442
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
443
|
-
ActiveJob::RetriableTest: test_raises_exception_when_include_in_an_ActiveJob_with_an_adapter_that_does_not_support_an_enqueue_at_method
|
444
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
445
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
446
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
447
|
-
----------------------------------------------------
|
448
|
-
ActiveJob::RetriableTest: test_invokes_all_callbacks
|
449
|
-
----------------------------------------------------
|
450
|
-
[ActiveJob] [CallbacksJob] [0bd5fc18-f233-4df4-8f63-3669ec746d82] Performing CallbacksJob from Test(default)
|
451
|
-
[ActiveJob] [CallbacksJob] [0bd5fc18-f233-4df4-8f63-3669ec746d82] Performed CallbacksJob from Test(default) in 0.21ms
|
452
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: 0bd5fc18-f233-4df4-8f63-3669ec746d82) to Test(default)
|
453
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
454
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
455
|
-
------------------------------------------------------------------------------
|
456
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_specified_max_retry
|
457
|
-
------------------------------------------------------------------------------
|
458
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
459
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.19ms
|
460
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 1)
|
461
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
462
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.23ms
|
463
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 2)
|
464
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
465
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.28ms
|
466
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 3)
|
467
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
468
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.3ms
|
469
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 4)
|
470
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
471
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.37ms
|
472
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 5)
|
473
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
474
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.41ms
|
475
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 6)
|
476
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
477
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.47ms
|
478
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 7)
|
479
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
480
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.51ms
|
481
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 8)
|
482
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
483
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.51ms
|
484
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 9)
|
485
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performing MaxJob from Test(default)
|
486
|
-
[ActiveJob] [MaxJob] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Performed MaxJob from Test(default) in 0.61ms
|
487
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [a3ea4f47-2eb0-4132-a233-38aab19f1021] Retries exhauseted at 10 attempts
|
488
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
489
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
490
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
491
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
492
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
493
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
494
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
495
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
496
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
497
|
-
[ActiveJob] Enqueued MaxJob (Job ID: a3ea4f47-2eb0-4132-a233-38aab19f1021) to Test(default) at 2016-07-18 21:00:16 UTC
|
498
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
499
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
500
|
-
----------------------------------------------------------------------------
|
501
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_queue_defined
|
502
|
-
----------------------------------------------------------------------------
|
503
|
-
[ActiveJob] Enqueued NoopJob (Job ID: cb3ad56a-bdb6-44d9-a858-e7d34681d622) to Test(default)
|
504
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
505
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
506
|
-
--------------------------------------------------------------------------
|
507
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_job_defined
|
508
|
-
--------------------------------------------------------------------------
|
509
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 58c0eef5-3a48-4010-9a4f-c1599640a607) to Test(default)
|
510
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
511
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
512
|
-
-----------------------------------------------------------------------------------
|
513
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_with_wait_have_at_defined
|
514
|
-
-----------------------------------------------------------------------------------
|
515
|
-
[ActiveJob] Enqueued NoopJob (Job ID: a5adedd1-2b95-40c0-b4ad-2ccb4ad9957e) to Test(default) at 2016-07-18 20:07:19 UTC
|
516
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
517
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
518
|
-
---------------------------------------------------------------------------
|
519
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_args_defined
|
520
|
-
---------------------------------------------------------------------------
|
521
|
-
[ActiveJob] [NoopJob] [c91c6b5c-3b9f-4760-9153-62fc5b35a71c] Performing NoopJob from Test(default)
|
522
|
-
[ActiveJob] [NoopJob] [c91c6b5c-3b9f-4760-9153-62fc5b35a71c] Performed NoopJob from Test(default) in 0.04ms
|
523
|
-
[ActiveJob] Enqueued NoopJob (Job ID: c91c6b5c-3b9f-4760-9153-62fc5b35a71c) to Test(default)
|
524
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
525
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
526
|
-
---------------------------------------------------------------------------
|
527
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_args_defined
|
528
|
-
---------------------------------------------------------------------------
|
529
|
-
[ActiveJob] Enqueued NoopJob (Job ID: d31b7eef-26e5-4a81-9723-2e9709010a71) to Test(default)
|
530
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
531
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
532
|
-
------------------------------------------------------------------------------------------------
|
533
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_performed_jobs_filtering
|
534
|
-
------------------------------------------------------------------------------------------------
|
535
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 7d133a7a-d6e8-4bdd-8af6-91b0d0fc8756) to Test(default)
|
536
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
537
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
538
|
-
--------------------------------------------------------------------------
|
539
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_job_defined
|
540
|
-
--------------------------------------------------------------------------
|
541
|
-
[ActiveJob] [NoopJob] [b2483050-4ee5-415d-91fa-a784637e4c07] Performing NoopJob from Test(default)
|
542
|
-
[ActiveJob] [NoopJob] [b2483050-4ee5-415d-91fa-a784637e4c07] Performed NoopJob from Test(default) in 0.02ms
|
543
|
-
[ActiveJob] Enqueued NoopJob (Job ID: b2483050-4ee5-415d-91fa-a784637e4c07) to Test(default)
|
544
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
545
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
546
|
-
----------------------------------------------------------------------------
|
547
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_queue_defined
|
548
|
-
----------------------------------------------------------------------------
|
549
|
-
[ActiveJob] [NoopJob] [d5bd74b9-7aa5-4d44-abf1-0e5a48dd395e] Performing NoopJob from Test(default)
|
550
|
-
[ActiveJob] [NoopJob] [d5bd74b9-7aa5-4d44-abf1-0e5a48dd395e] Performed NoopJob from Test(default) in 0.02ms
|
551
|
-
[ActiveJob] Enqueued NoopJob (Job ID: d5bd74b9-7aa5-4d44-abf1-0e5a48dd395e) to Test(default)
|
552
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
553
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
554
|
-
------------------------------------------------------------------------------------
|
555
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_with_wait_have_at_defined
|
556
|
-
------------------------------------------------------------------------------------
|
557
|
-
[ActiveJob] [NoopJob] [0bb87602-efb5-40e6-a970-243ac3cd0997] Performing NoopJob from Test(default)
|
558
|
-
[ActiveJob] [NoopJob] [0bb87602-efb5-40e6-a970-243ac3cd0997] Performed NoopJob from Test(default) in 0.02ms
|
559
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 0bb87602-efb5-40e6-a970-243ac3cd0997) to Test(default) at 2016-07-18 20:07:19 UTC
|
560
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
561
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
562
|
-
--------------------------------------------------------------------------------------------------
|
563
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_queue_option
|
564
|
-
--------------------------------------------------------------------------------------------------
|
565
|
-
[ActiveJob] Enqueued NoopJob (Job ID: bbb48f00-3c5d-4d64-a3a8-5e9349a9de05) to Test(default)
|
566
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
567
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
568
|
-
------------------------------------------------------------------------------------------------
|
569
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_job_option
|
570
|
-
------------------------------------------------------------------------------------------------
|
571
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 43d3cce8-3afc-485f-b9ce-c558d59a5761) to Test(default)
|
572
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
573
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
574
|
-
-----------------------------------------------------------------------------------------------
|
575
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_at_option
|
576
|
-
-----------------------------------------------------------------------------------------------
|
577
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 50750caf-a42f-4dcd-b7c3-4dfc088a4085) to Test(default) at 2016-07-19 12:00:00 UTC
|
578
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
579
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
580
|
-
-------------------------------------------------------------------------------------------------
|
581
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_args_option
|
582
|
-
-------------------------------------------------------------------------------------------------
|
583
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 4b1a96cc-7a5c-40fd-8c09-42dddb004876) to Test(default)
|
584
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
585
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
586
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
587
|
-
-----------------------------------------------------------------------------------
|
588
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_with_wait_have_at_defined
|
589
|
-
-----------------------------------------------------------------------------------
|
590
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 88026e42-baa9-4af6-ad08-93a81087d509) to Test(default) at 2016-07-18 20:11:07 UTC
|
591
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
592
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
593
|
-
-------------------------------------------------------------------------------------------------
|
594
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_args_option
|
595
|
-
-------------------------------------------------------------------------------------------------
|
596
|
-
[ActiveJob] Enqueued NoopJob (Job ID: f4482d52-244f-40ff-9404-02a28bedaebd) to Test(default)
|
597
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
598
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
599
|
-
------------------------------------------------------------------------------------------------
|
600
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_job_option
|
601
|
-
------------------------------------------------------------------------------------------------
|
602
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 803ac44d-6f5d-4f9d-bae5-0b11dc7293e6) to Test(default)
|
603
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
604
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
605
|
-
--------------------------------------------------------------------------
|
606
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_job_defined
|
607
|
-
--------------------------------------------------------------------------
|
608
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 20e7643d-7583-4849-a418-e75cd3957b41) to Test(default)
|
609
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
610
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
611
|
-
----------------------------------------------------------------------------
|
612
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_queue_defined
|
613
|
-
----------------------------------------------------------------------------
|
614
|
-
[ActiveJob] [NoopJob] [76a3924a-a08b-4017-81d0-f6d849d36d2b] Performing NoopJob from Test(default)
|
615
|
-
[ActiveJob] [NoopJob] [76a3924a-a08b-4017-81d0-f6d849d36d2b] Performed NoopJob from Test(default) in 0.03ms
|
616
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 76a3924a-a08b-4017-81d0-f6d849d36d2b) to Test(default)
|
617
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
618
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
619
|
-
----------------------------------------------------------------------------
|
620
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_queue_defined
|
621
|
-
----------------------------------------------------------------------------
|
622
|
-
[ActiveJob] Enqueued NoopJob (Job ID: e9a81a43-8630-4b64-bc95-25082c1e59b4) to Test(default)
|
623
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
624
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
625
|
-
---------------------------------------------------------------------------
|
626
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_args_defined
|
627
|
-
---------------------------------------------------------------------------
|
628
|
-
[ActiveJob] [NoopJob] [9e20f36b-04b2-4d17-9434-c56f50acc91d] Performing NoopJob from Test(default)
|
629
|
-
[ActiveJob] [NoopJob] [9e20f36b-04b2-4d17-9434-c56f50acc91d] Performed NoopJob from Test(default) in 0.02ms
|
630
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 9e20f36b-04b2-4d17-9434-c56f50acc91d) to Test(default)
|
631
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
632
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
633
|
-
------------------------------------------------------------------------------------------------
|
634
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_performed_jobs_filtering
|
635
|
-
------------------------------------------------------------------------------------------------
|
636
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 4ccc3a5c-1efe-4ce7-b3a9-864a7017fbfc) to Test(default)
|
637
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
638
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
639
|
-
---------------------------------------------------------------------------
|
640
|
-
ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_args_defined
|
641
|
-
---------------------------------------------------------------------------
|
642
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 778f4397-e491-434d-b63c-8e0e31ac48b6) to Test(default)
|
643
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
644
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
645
|
-
--------------------------------------------------------------------------
|
646
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_job_defined
|
647
|
-
--------------------------------------------------------------------------
|
648
|
-
[ActiveJob] [NoopJob] [8906c646-ab2d-4ac3-9cba-3d67d9028bf8] Performing NoopJob from Test(default)
|
649
|
-
[ActiveJob] [NoopJob] [8906c646-ab2d-4ac3-9cba-3d67d9028bf8] Performed NoopJob from Test(default) in 0.02ms
|
650
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 8906c646-ab2d-4ac3-9cba-3d67d9028bf8) to Test(default)
|
651
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
652
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
653
|
-
------------------------------------------------------------------------------------
|
654
|
-
ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_with_wait_have_at_defined
|
655
|
-
------------------------------------------------------------------------------------
|
656
|
-
[ActiveJob] [NoopJob] [6ed7bea5-86e2-4b70-a549-56566e8c0918] Performing NoopJob from Test(default)
|
657
|
-
[ActiveJob] [NoopJob] [6ed7bea5-86e2-4b70-a549-56566e8c0918] Performed NoopJob from Test(default) in 0.02ms
|
658
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 6ed7bea5-86e2-4b70-a549-56566e8c0918) to Test(default) at 2016-07-18 20:11:07 UTC
|
659
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
660
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
661
|
-
-----------------------------------------------------------------------------------------------
|
662
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_at_option
|
663
|
-
-----------------------------------------------------------------------------------------------
|
664
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 59ed3865-bf71-41c8-af41-a57919d2706d) to Test(default) at 2016-07-19 12:00:00 UTC
|
665
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
666
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
667
|
-
--------------------------------------------------------------------------------------------------
|
668
|
-
ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_queue_option
|
669
|
-
--------------------------------------------------------------------------------------------------
|
670
|
-
[ActiveJob] Enqueued NoopJob (Job ID: 8200c325-6820-424c-88f5-1a6c4cdb1662) to Test(default)
|
671
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
672
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
673
|
-
----------------------------------------------------------------------------
|
674
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_is_retried
|
675
|
-
----------------------------------------------------------------------------
|
676
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performing RescueJob from Test(default)
|
677
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performed RescueJob from Test(default) in 0.11ms
|
678
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performing RescueJob from Test(default)
|
679
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performed RescueJob from Test(default) in 0.11ms
|
680
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performing RescueJob from Test(default)
|
681
|
-
[ActiveJob] [RescueJob] [5354a7d5-28a7-415d-ae5a-7d01794a0b5d] Performed RescueJob from Test(default) in 0.16ms
|
682
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 5354a7d5-28a7-415d-ae5a-7d01794a0b5d) to Test(default) at 2016-07-18 20:11:07 UTC
|
683
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 5354a7d5-28a7-415d-ae5a-7d01794a0b5d) to Test(default) at 2016-07-18 20:11:07 UTC
|
684
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 5354a7d5-28a7-415d-ae5a-7d01794a0b5d) to Test(default) at 2016-07-18 20:11:07 UTC
|
685
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
686
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
687
|
-
---------------------------------------------------------------------------------------------
|
688
|
-
ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_uses_custom_retry_wait_time
|
689
|
-
---------------------------------------------------------------------------------------------
|
690
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performing RescueJob from Test(default)
|
691
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performed RescueJob from Test(default) in 0.1ms
|
692
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performing RescueJob from Test(default)
|
693
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performed RescueJob from Test(default) in 0.11ms
|
694
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performing RescueJob from Test(default)
|
695
|
-
[ActiveJob] [RescueJob] [084ff98c-ba52-47c0-82ee-7ed7aec97a2a] Performed RescueJob from Test(default) in 0.15ms
|
696
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 084ff98c-ba52-47c0-82ee-7ed7aec97a2a) to Test(default) at 2016-07-18 20:11:07 UTC
|
697
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 084ff98c-ba52-47c0-82ee-7ed7aec97a2a) to Test(default) at 2016-07-18 20:11:07 UTC
|
698
|
-
[ActiveJob] Enqueued RescueJob (Job ID: 084ff98c-ba52-47c0-82ee-7ed7aec97a2a) to Test(default) at 2016-07-18 20:11:07 UTC
|
699
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
700
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
701
|
-
----------------------------------------------------
|
702
|
-
ActiveJob::RetriableTest: test_invokes_all_callbacks
|
703
|
-
----------------------------------------------------
|
704
|
-
[ActiveJob] [CallbacksJob] [bf5b6812-542a-438d-9759-daf697042c35] Performing CallbacksJob from Test(default)
|
705
|
-
[ActiveJob] [CallbacksJob] [bf5b6812-542a-438d-9759-daf697042c35] Performed CallbacksJob from Test(default) in 0.27ms
|
706
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: bf5b6812-542a-438d-9759-daf697042c35) to Test(default)
|
707
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
708
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
709
|
-
-----------------------------------------------------------------------------------
|
710
|
-
ActiveJob::RetriableTest: test_sets_current_exception_and_is_available_in_callbacks
|
711
|
-
-----------------------------------------------------------------------------------
|
712
|
-
[ActiveJob] [CallbacksJob] [1e38e257-61d0-428e-828b-4924c0065509] Performing CallbacksJob from Test(default)
|
713
|
-
[ActiveJob] [CallbacksJob] [1e38e257-61d0-428e-828b-4924c0065509] Performed CallbacksJob from Test(default) in 0.12ms
|
714
|
-
[ActiveJob] Enqueued CallbacksJob (Job ID: 1e38e257-61d0-428e-828b-4924c0065509) to Test(default)
|
715
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
716
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
717
|
-
----------------------------------------------------------------------
|
718
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_DEFAULT_MAX
|
719
|
-
----------------------------------------------------------------------
|
720
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
721
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.1ms
|
722
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
|
723
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
724
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.13ms
|
725
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
|
726
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
727
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.18ms
|
728
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
|
729
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
730
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.18ms
|
731
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
|
732
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
733
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.2ms
|
734
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
|
735
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
736
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.23ms
|
737
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
|
738
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
739
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.26ms
|
740
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
|
741
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
742
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.27ms
|
743
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
|
744
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
745
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.3ms
|
746
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
|
747
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
748
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.32ms
|
749
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
|
750
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
751
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.38ms
|
752
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
|
753
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
754
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.54ms
|
755
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
|
756
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
757
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.42ms
|
758
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
|
759
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
760
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.45ms
|
761
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
|
762
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
763
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.48ms
|
764
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
|
765
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
766
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.49ms
|
767
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
|
768
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
769
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.57ms
|
770
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
|
771
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
772
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.65ms
|
773
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
|
774
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
775
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.77ms
|
776
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
|
777
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
778
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.62ms
|
779
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
|
780
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
781
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.64ms
|
782
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
|
783
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
784
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.69ms
|
785
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
|
786
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
787
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.68ms
|
788
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
|
789
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
790
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.69ms
|
791
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
|
792
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performing RaiseJob from Test(default)
|
793
|
-
[ActiveJob] [RaiseJob] [929065e5-672b-4963-b48e-e693b330f6cb] Performed RaiseJob from Test(default) in 0.72ms
|
794
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [929065e5-672b-4963-b48e-e693b330f6cb] Retries exhauseted at 25 attempts
|
795
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
796
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
797
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
798
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
799
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
800
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
801
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
802
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
803
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
804
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
805
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
806
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
807
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
808
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
809
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
810
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
811
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
812
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
813
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
814
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
815
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
816
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
817
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
818
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
819
|
-
[ActiveJob] Enqueued RaiseJob (Job ID: 929065e5-672b-4963-b48e-e693b330f6cb) to Test(default) at 2016-07-22 15:31:55 UTC
|
820
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
821
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
822
|
-
------------------------------------------------------------------------------
|
823
|
-
ActiveJob::RetriableTest: test_failed_job_is_retried_until_specified_max_retry
|
824
|
-
------------------------------------------------------------------------------
|
825
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
826
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.15ms
|
827
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 1)
|
828
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
829
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.12ms
|
830
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 2)
|
831
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
832
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.15ms
|
833
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 3)
|
834
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
835
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.18ms
|
836
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 4)
|
837
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
838
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.2ms
|
839
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 5)
|
840
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
841
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.23ms
|
842
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 6)
|
843
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
844
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.25ms
|
845
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 7)
|
846
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
847
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.28ms
|
848
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 8)
|
849
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
850
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.3ms
|
851
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 9)
|
852
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performing MaxJob from Test(default)
|
853
|
-
[ActiveJob] [MaxJob] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Performed MaxJob from Test(default) in 0.33ms
|
854
|
-
[ActiveJob] [[ActiveJob::Retriable] [Class]] [34316f2f-6ebe-4f7e-aa18-ad80ef881f8e] Retries exhauseted at 10 attempts
|
855
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
856
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
857
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
858
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
859
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
860
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
861
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
862
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
863
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
864
|
-
[ActiveJob] Enqueued MaxJob (Job ID: 34316f2f-6ebe-4f7e-aa18-ad80ef881f8e) to Test(default) at 2016-07-18 21:01:31 UTC
|
865
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
866
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
867
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
868
|
-
ActiveJob::RetriableTest: test_raises_exception_when_include_in_an_ActiveJob_with_an_adapter_that_does_not_support_an_enqueue_at_method
|
869
|
-
---------------------------------------------------------------------------------------------------------------------------------------
|
870
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|