activejob-retriable 5.0.3 → 5.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4baa825ff3628f5734d05ed0e735fc1336f147f1
4
- data.tar.gz: 5a29f54875febbcea32dcab53825724f447d0b1a
3
+ metadata.gz: 06a9007a7fc413e82bd41be7b8490259bc8dd38b
4
+ data.tar.gz: f5073d0a90b484cc6b000ce846b96d1e66a75d0a
5
5
  SHA512:
6
- metadata.gz: a62d496a43eeb78282515cc62713f36cf1792685fc4e3483f6d439e501ceca0dcc5ff36a02e5d40dc33fd1a3e2ef2a67992bf395780c07f276ca9ed5c6afb048
7
- data.tar.gz: 90cf135090b8c1f0e4d371daeb16d3118821a84e99dccb1f9d75d49ab42a137c7045681d982aaa821d10c04ed314d77d64e1b25a561cc67a857f96f94715311d
6
+ metadata.gz: '0916874c1555ea19bb76efa95ef89d683da366bbc42d70f61f137331a3c9d414c2a7ed9fa2a9f6bd8204c2f767d91e8f77ce5636ed100be31504dffabd2b41e8'
7
+ data.tar.gz: 2d4a1a68177e835c523164c7a58c7299c00e873b1576c883da80b8c53aa48b9181d4a6c6324e49e6950c07788850c8e37ae3d0185641e3ffb2ecd76ef4e49163
@@ -42,7 +42,6 @@ module ActiveJob
42
42
 
43
43
  define_callbacks :exception
44
44
 
45
- # TODO think about how to handle ActiveJob::DeserializationError
46
45
  rescue_from Exception do |ex|
47
46
  self.current_exception = ex
48
47
 
@@ -56,7 +55,10 @@ module ActiveJob
56
55
  $stderr.puts ex.backtrace.join("\n") if print_exception_backtraces_to_stderr?
57
56
  end
58
57
 
59
- if retries_exhausted?
58
+ if ActiveJob::DeserializationError === ex
59
+ logger.info "Aborting retry due to DeserializationError: #{ex.message}"
60
+
61
+ elsif retries_exhausted?
60
62
  logger.info "#{log_tags} Retries exhauseted at #{retry_attempt} attempts"
61
63
 
62
64
  raise ex if reraise_when_retry_exhausted?
@@ -1,5 +1,5 @@
1
1
  module ActiveJob
2
2
  module Retriable
3
- VERSION = '5.0.3'
3
+ VERSION = '5.0.4'
4
4
  end
5
5
  end
@@ -2058,3 +2058,945 @@ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued
2058
2058
  -----------------------------------------------------------------------------------------------
2059
2059
  [ActiveJob] Enqueued NoopJob (Job ID: b5e11bd2-2986-4734-9242-524848e31b83) to Test(default) at 2016-09-25 12:00:00 UTC
2060
2060
   (0.0ms) rollback transaction
2061
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2062
+  (0.1ms) begin transaction
2063
+ --------------------------------------------------------------------------
2064
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_job_defined
2065
+ --------------------------------------------------------------------------
2066
+ [ActiveJob] Enqueued NoopJob (Job ID: 3229ad61-2902-44a6-a48b-a32bde5bc50a) to Test(default)
2067
+  (0.0ms) rollback transaction
2068
+  (0.0ms) begin transaction
2069
+ ----------------------------------------------------------------------------
2070
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_queue_defined
2071
+ ----------------------------------------------------------------------------
2072
+ [ActiveJob] [NoopJob] [471384ec-2eec-409c-968a-765c5a714972] Performing NoopJob from Test(default)
2073
+ [ActiveJob] [NoopJob] [471384ec-2eec-409c-968a-765c5a714972] Performed NoopJob from Test(default) in 0.03ms
2074
+ [ActiveJob] Enqueued NoopJob (Job ID: 471384ec-2eec-409c-968a-765c5a714972) to Test(default)
2075
+  (0.0ms) rollback transaction
2076
+  (0.0ms) begin transaction
2077
+ -----------------------------------------------------------------------------------
2078
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_with_wait_have_at_defined
2079
+ -----------------------------------------------------------------------------------
2080
+ [ActiveJob] Enqueued NoopJob (Job ID: 8d9cdcd5-893f-42db-b50d-000c1abeba80) to Test(default) at 2017-01-04 18:13:31 UTC
2081
+  (0.0ms) rollback transaction
2082
+  (0.0ms) begin transaction
2083
+ ---------------------------------------------------------------------------
2084
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_args_defined
2085
+ ---------------------------------------------------------------------------
2086
+ [ActiveJob] [NoopJob] [1d6a9fc5-5168-4afe-9b54-f6abbc8b4306] Performing NoopJob from Test(default)
2087
+ [ActiveJob] [NoopJob] [1d6a9fc5-5168-4afe-9b54-f6abbc8b4306] Performed NoopJob from Test(default) in 0.02ms
2088
+ [ActiveJob] Enqueued NoopJob (Job ID: 1d6a9fc5-5168-4afe-9b54-f6abbc8b4306) to Test(default)
2089
+  (0.0ms) rollback transaction
2090
+  (0.0ms) begin transaction
2091
+ ---------------------------------------------------------------------------
2092
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_args_defined
2093
+ ---------------------------------------------------------------------------
2094
+ [ActiveJob] Enqueued NoopJob (Job ID: fee7a2d5-3c12-46e8-beb3-ff0b1821f286) to Test(default)
2095
+  (0.1ms) rollback transaction
2096
+  (0.0ms) begin transaction
2097
+ ------------------------------------------------------------------------------------
2098
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_with_wait_have_at_defined
2099
+ ------------------------------------------------------------------------------------
2100
+ [ActiveJob] [NoopJob] [d4db148f-5a6b-4760-aa26-7aa2e6cf1b2d] Performing NoopJob from Test(default)
2101
+ [ActiveJob] [NoopJob] [d4db148f-5a6b-4760-aa26-7aa2e6cf1b2d] Performed NoopJob from Test(default) in 0.02ms
2102
+ [ActiveJob] Enqueued NoopJob (Job ID: d4db148f-5a6b-4760-aa26-7aa2e6cf1b2d) to Test(default) at 2017-01-04 18:13:31 UTC
2103
+  (0.0ms) rollback transaction
2104
+  (0.0ms) begin transaction
2105
+ -----------------------------------------------------------------------------------------------
2106
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_at_option
2107
+ -----------------------------------------------------------------------------------------------
2108
+ [ActiveJob] Enqueued NoopJob (Job ID: aab910d3-3389-4015-a48c-3b84c875f90a) to Test(default) at 2017-01-05 12:00:00 UTC
2109
+  (0.0ms) rollback transaction
2110
+  (0.0ms) begin transaction
2111
+ ------------------------------------------------------------------------------------------------
2112
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_performed_jobs_filtering
2113
+ ------------------------------------------------------------------------------------------------
2114
+ [ActiveJob] Enqueued NoopJob (Job ID: c8c7bf63-d9dc-4fe7-ba10-5ae04ec28775) to Test(default)
2115
+  (0.0ms) rollback transaction
2116
+  (0.0ms) begin transaction
2117
+ --------------------------------------------------------------------------
2118
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_job_defined
2119
+ --------------------------------------------------------------------------
2120
+ [ActiveJob] [NoopJob] [b295bfa3-2198-42dd-a335-f6a799ba121f] Performing NoopJob from Test(default)
2121
+ [ActiveJob] [NoopJob] [b295bfa3-2198-42dd-a335-f6a799ba121f] Performed NoopJob from Test(default) in 0.02ms
2122
+ [ActiveJob] Enqueued NoopJob (Job ID: b295bfa3-2198-42dd-a335-f6a799ba121f) to Test(default)
2123
+  (0.0ms) rollback transaction
2124
+  (0.0ms) begin transaction
2125
+ --------------------------------------------------------------------------------------------------
2126
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_queue_option
2127
+ --------------------------------------------------------------------------------------------------
2128
+ [ActiveJob] Enqueued NoopJob (Job ID: 07a1b634-c864-480f-b572-693e3b9a992f) to Test(default)
2129
+  (0.0ms) rollback transaction
2130
+  (0.0ms) begin transaction
2131
+ -------------------------------------------------------------------------------------------------
2132
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_args_option
2133
+ -------------------------------------------------------------------------------------------------
2134
+ [ActiveJob] Enqueued NoopJob (Job ID: 8b40e0b7-18f5-46ed-b98c-a75e09ad6a6d) to Test(default)
2135
+  (0.0ms) rollback transaction
2136
+  (0.0ms) begin transaction
2137
+ ----------------------------------------------------------------------------
2138
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_queue_defined
2139
+ ----------------------------------------------------------------------------
2140
+ [ActiveJob] Enqueued NoopJob (Job ID: 25d17da4-df37-43fd-b445-2b6e675ed851) to Test(default)
2141
+  (0.0ms) rollback transaction
2142
+  (0.0ms) begin transaction
2143
+ ------------------------------------------------------------------------------------------------
2144
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_job_option
2145
+ ------------------------------------------------------------------------------------------------
2146
+ [ActiveJob] Enqueued NoopJob (Job ID: 7ab92d18-ebe7-4491-a89b-84a1ee8a8492) to Test(default)
2147
+  (0.0ms) rollback transaction
2148
+  (0.1ms) begin transaction
2149
+ ----------------------------------------------------
2150
+ ActiveJob::RetriableTest: test_reraise_on_exceptions
2151
+ ----------------------------------------------------
2152
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2153
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.13ms
2154
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2155
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2156
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.12ms
2157
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2158
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2159
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.15ms
2160
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2161
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2162
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.16ms
2163
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2164
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2165
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.21ms
2166
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2167
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2168
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.23ms
2169
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2170
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2171
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.25ms
2172
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2173
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2174
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.28ms
2175
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2176
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2177
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.28ms
2178
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2179
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2180
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.32ms
2181
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2182
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2183
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.36ms
2184
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2185
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2186
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.37ms
2187
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2188
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2189
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.39ms
2190
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2191
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2192
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.42ms
2193
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2194
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2195
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.43ms
2196
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2197
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2198
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.63ms
2199
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2200
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2201
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.69ms
2202
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2203
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2204
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.68ms
2205
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2206
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2207
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 5.3ms
2208
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2209
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2210
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.7ms
2211
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2212
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2213
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.68ms
2214
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2215
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2216
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.71ms
2217
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2218
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2219
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.79ms
2220
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2221
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2222
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.82ms
2223
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2224
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performing RaiseJob from Test(default)
2225
+ [ActiveJob] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Performed RaiseJob from Test(default) in 0.81ms
2226
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [f601b8a5-ca69-46db-abdc-af4bb6c6f369] Retries exhauseted at 25 attempts
2227
+  (0.1ms) rollback transaction
2228
+  (0.0ms) begin transaction
2229
+ ------------------------------------------------------------------------------
2230
+ ActiveJob::RetriableTest: test_failed_job_is_retried_until_specified_max_retry
2231
+ ------------------------------------------------------------------------------
2232
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2233
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.11ms
2234
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 1)
2235
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2236
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.13ms
2237
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 2)
2238
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2239
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.19ms
2240
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 3)
2241
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2242
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.21ms
2243
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 4)
2244
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2245
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.2ms
2246
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 5)
2247
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2248
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.25ms
2249
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 6)
2250
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2251
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.29ms
2252
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 7)
2253
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2254
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.31ms
2255
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 8)
2256
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2257
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.39ms
2258
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 9)
2259
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performing MaxJob from Test(default)
2260
+ [ActiveJob] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Performed MaxJob from Test(default) in 0.38ms
2261
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [6df2156d-2775-414b-bb35-2dee0c731513] Retries exhauseted at 10 attempts
2262
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2263
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2264
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2265
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2266
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2267
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2268
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2269
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2270
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2271
+ [ActiveJob] Enqueued MaxJob (Job ID: 6df2156d-2775-414b-bb35-2dee0c731513) to Test(default) at 2017-01-04 19:05:52 UTC
2272
+  (0.1ms) rollback transaction
2273
+  (0.1ms) begin transaction
2274
+ ----------------------------------------------------------------------------
2275
+ ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_is_retried
2276
+ ----------------------------------------------------------------------------
2277
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performing RescueJob from Test(default)
2278
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performed RescueJob from Test(default) in 0.17ms
2279
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performing RescueJob from Test(default)
2280
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performed RescueJob from Test(default) in 0.15ms
2281
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performing RescueJob from Test(default)
2282
+ [ActiveJob] [RescueJob] [60613ad3-b92c-47f6-89a7-cd0a596234b2] Performed RescueJob from Test(default) in 0.16ms
2283
+ [ActiveJob] Enqueued RescueJob (Job ID: 60613ad3-b92c-47f6-89a7-cd0a596234b2) to Test(default) at 2017-01-04 18:13:31 UTC
2284
+ [ActiveJob] Enqueued RescueJob (Job ID: 60613ad3-b92c-47f6-89a7-cd0a596234b2) to Test(default) at 2017-01-04 18:13:31 UTC
2285
+ [ActiveJob] Enqueued RescueJob (Job ID: 60613ad3-b92c-47f6-89a7-cd0a596234b2) to Test(default) at 2017-01-04 18:13:31 UTC
2286
+  (0.1ms) rollback transaction
2287
+  (0.0ms) begin transaction
2288
+ ---------------------------------------------------------------------------------------------
2289
+ ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_uses_custom_retry_wait_time
2290
+ ---------------------------------------------------------------------------------------------
2291
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performing RescueJob from Test(default)
2292
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performed RescueJob from Test(default) in 0.1ms
2293
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performing RescueJob from Test(default)
2294
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performed RescueJob from Test(default) in 0.12ms
2295
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performing RescueJob from Test(default)
2296
+ [ActiveJob] [RescueJob] [a0841242-7205-46e1-975c-039d9fcaa2ea] Performed RescueJob from Test(default) in 0.14ms
2297
+ [ActiveJob] Enqueued RescueJob (Job ID: a0841242-7205-46e1-975c-039d9fcaa2ea) to Test(default) at 2017-01-04 18:13:31 UTC
2298
+ [ActiveJob] Enqueued RescueJob (Job ID: a0841242-7205-46e1-975c-039d9fcaa2ea) to Test(default) at 2017-01-04 18:13:31 UTC
2299
+ [ActiveJob] Enqueued RescueJob (Job ID: a0841242-7205-46e1-975c-039d9fcaa2ea) to Test(default) at 2017-01-04 18:13:31 UTC
2300
+  (0.0ms) rollback transaction
2301
+  (0.0ms) begin transaction
2302
+ -----------------------------------------------------------------------------------
2303
+ ActiveJob::RetriableTest: test_sets_current_exception_and_is_available_in_callbacks
2304
+ -----------------------------------------------------------------------------------
2305
+ [ActiveJob] [CallbacksJob] [2c32fdcf-a2dc-47c3-bd0d-46500aab6599] Performing CallbacksJob from Test(default)
2306
+ [ActiveJob] [CallbacksJob] [2c32fdcf-a2dc-47c3-bd0d-46500aab6599] Performed CallbacksJob from Test(default) in 0.1ms
2307
+ [ActiveJob] Enqueued CallbacksJob (Job ID: 2c32fdcf-a2dc-47c3-bd0d-46500aab6599) to Test(default)
2308
+  (0.0ms) rollback transaction
2309
+  (0.0ms) begin transaction
2310
+ ----------------------------------------------------------------------
2311
+ ActiveJob::RetriableTest: test_failed_job_is_retried_until_DEFAULT_MAX
2312
+ ----------------------------------------------------------------------
2313
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2314
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.15ms
2315
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2316
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2317
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.17ms
2318
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2319
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2320
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.17ms
2321
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2322
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2323
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.2ms
2324
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2325
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2326
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.25ms
2327
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2328
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2329
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.25ms
2330
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2331
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2332
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.28ms
2333
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2334
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2335
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.3ms
2336
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2337
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2338
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.36ms
2339
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2340
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2341
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.39ms
2342
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2343
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2344
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.38ms
2345
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2346
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2347
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.42ms
2348
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2349
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2350
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.51ms
2351
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2352
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2353
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.48ms
2354
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2355
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2356
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.56ms
2357
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2358
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2359
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.55ms
2360
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2361
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2362
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.56ms
2363
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2364
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2365
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.59ms
2366
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2367
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2368
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.59ms
2369
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2370
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2371
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.62ms
2372
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2373
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2374
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.65ms
2375
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2376
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2377
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.72ms
2378
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2379
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2380
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.71ms
2381
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2382
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2383
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.74ms
2384
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2385
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performing RaiseJob from Test(default)
2386
+ [ActiveJob] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Performed RaiseJob from Test(default) in 0.73ms
2387
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [ed2a7405-f208-4ef9-86dc-7b65d38d0254] Retries exhauseted at 25 attempts
2388
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2389
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2390
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2391
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2392
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2393
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2394
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2395
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2396
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2397
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2398
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2399
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2400
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2401
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2402
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2403
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2404
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2405
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2406
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2407
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2408
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2409
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2410
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2411
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2412
+ [ActiveJob] Enqueued RaiseJob (Job ID: ed2a7405-f208-4ef9-86dc-7b65d38d0254) to Test(default) at 2017-01-08 13:33:07 UTC
2413
+  (0.1ms) rollback transaction
2414
+  (0.0ms) begin transaction
2415
+ ------------------------------------------------------------
2416
+ ActiveJob::RetriableTest: test_print_to_stderr_on_exceptions
2417
+ ------------------------------------------------------------
2418
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2419
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.09ms
2420
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2421
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2422
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.11ms
2423
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2424
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2425
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.13ms
2426
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2427
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2428
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.19ms
2429
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2430
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2431
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.21ms
2432
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2433
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2434
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.22ms
2435
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2436
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2437
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.26ms
2438
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2439
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2440
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.27ms
2441
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2442
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2443
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.33ms
2444
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2445
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2446
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.31ms
2447
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2448
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2449
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.37ms
2450
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2451
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2452
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.41ms
2453
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2454
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2455
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.41ms
2456
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2457
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2458
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.44ms
2459
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2460
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2461
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.46ms
2462
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2463
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2464
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.47ms
2465
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2466
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2467
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.51ms
2468
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2469
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2470
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.54ms
2471
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2472
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2473
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.56ms
2474
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2475
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2476
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.77ms
2477
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2478
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2479
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.59ms
2480
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2481
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2482
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.67ms
2483
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2484
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2485
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.68ms
2486
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2487
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2488
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.72ms
2489
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2490
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performing RaiseJob from Test(default)
2491
+ [ActiveJob] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Performed RaiseJob from Test(default) in 0.73ms
2492
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [e39b04e3-fc48-4d76-b25c-966b4d22a394] Retries exhauseted at 25 attempts
2493
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2494
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2495
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2496
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2497
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2498
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2499
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2500
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2501
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2502
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2503
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2504
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2505
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2506
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2507
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2508
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2509
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2510
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2511
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2512
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2513
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2514
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2515
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2516
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2517
+ [ActiveJob] Enqueued RaiseJob (Job ID: e39b04e3-fc48-4d76-b25c-966b4d22a394) to Test(default) at 2017-01-08 13:23:31 UTC
2518
+  (0.1ms) rollback transaction
2519
+  (0.0ms) begin transaction
2520
+ ---------------------------------------------------------------------------------------------------------------------------------------
2521
+ ActiveJob::RetriableTest: test_raises_exception_when_include_in_an_ActiveJob_with_an_adapter_that_does_not_support_an_enqueue_at_method
2522
+ ---------------------------------------------------------------------------------------------------------------------------------------
2523
+  (0.1ms) rollback transaction
2524
+  (0.0ms) begin transaction
2525
+ ----------------------------------------------------
2526
+ ActiveJob::RetriableTest: test_invokes_all_callbacks
2527
+ ----------------------------------------------------
2528
+ [ActiveJob] [CallbacksJob] [2380ee74-69ce-4a9a-9e0a-e3dd1e659be4] Performing CallbacksJob from Test(default)
2529
+ [ActiveJob] [CallbacksJob] [2380ee74-69ce-4a9a-9e0a-e3dd1e659be4] Performed CallbacksJob from Test(default) in 0.1ms
2530
+ [ActiveJob] Enqueued CallbacksJob (Job ID: 2380ee74-69ce-4a9a-9e0a-e3dd1e659be4) to Test(default)
2531
+  (0.0ms) rollback transaction
2532
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2533
+  (0.1ms) begin transaction
2534
+ ----------------------------------------------------------------------------
2535
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_queue_defined
2536
+ ----------------------------------------------------------------------------
2537
+ [ActiveJob] Enqueued NoopJob (Job ID: a38dae82-050c-4427-9950-da01b89a5dff) to Test(default)
2538
+  (0.0ms) rollback transaction
2539
+  (0.0ms) begin transaction
2540
+ --------------------------------------------------------------------------
2541
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_job_defined
2542
+ --------------------------------------------------------------------------
2543
+ [ActiveJob] [NoopJob] [8a10d02c-30f5-4b1f-8661-54ae465daade] Performing NoopJob from Test(default)
2544
+ [ActiveJob] [NoopJob] [8a10d02c-30f5-4b1f-8661-54ae465daade] Performed NoopJob from Test(default) in 0.02ms
2545
+ [ActiveJob] Enqueued NoopJob (Job ID: 8a10d02c-30f5-4b1f-8661-54ae465daade) to Test(default)
2546
+  (0.0ms) rollback transaction
2547
+  (0.0ms) begin transaction
2548
+ ------------------------------------------------------------------------------------
2549
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_with_wait_have_at_defined
2550
+ ------------------------------------------------------------------------------------
2551
+ [ActiveJob] [NoopJob] [cfecee69-b8b3-42d7-980e-3ee8a58b405b] Performing NoopJob from Test(default)
2552
+ [ActiveJob] [NoopJob] [cfecee69-b8b3-42d7-980e-3ee8a58b405b] Performed NoopJob from Test(default) in 0.03ms
2553
+ [ActiveJob] Enqueued NoopJob (Job ID: cfecee69-b8b3-42d7-980e-3ee8a58b405b) to Test(default) at 2017-01-04 18:14:38 UTC
2554
+  (0.0ms) rollback transaction
2555
+  (0.0ms) begin transaction
2556
+ ---------------------------------------------------------------------------
2557
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_args_defined
2558
+ ---------------------------------------------------------------------------
2559
+ [ActiveJob] Enqueued NoopJob (Job ID: 53299a40-f046-44a2-b9da-394c915a8266) to Test(default)
2560
+  (0.0ms) rollback transaction
2561
+  (0.0ms) begin transaction
2562
+ --------------------------------------------------------------------------------------------------
2563
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_queue_option
2564
+ --------------------------------------------------------------------------------------------------
2565
+ [ActiveJob] Enqueued NoopJob (Job ID: 2e652ec5-0dc6-49f7-9003-bb58cb03f75f) to Test(default)
2566
+  (0.0ms) rollback transaction
2567
+  (0.0ms) begin transaction
2568
+ --------------------------------------------------------------------------
2569
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_have_job_defined
2570
+ --------------------------------------------------------------------------
2571
+ [ActiveJob] Enqueued NoopJob (Job ID: ba68da95-d590-48ec-8e22-2162399b3007) to Test(default)
2572
+  (0.1ms) rollback transaction
2573
+  (0.0ms) begin transaction
2574
+ ------------------------------------------------------------------------------------------------
2575
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_job_option
2576
+ ------------------------------------------------------------------------------------------------
2577
+ [ActiveJob] Enqueued NoopJob (Job ID: 2621aa33-8c67-47c7-aa59-9d80ea3b02b9) to Test(default)
2578
+  (0.0ms) rollback transaction
2579
+  (0.0ms) begin transaction
2580
+ ------------------------------------------------------------------------------------------------
2581
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_performed_jobs_filtering
2582
+ ------------------------------------------------------------------------------------------------
2583
+ [ActiveJob] Enqueued NoopJob (Job ID: 870a8b22-7b5e-48e7-ba6b-ea850540fc96) to Test(default)
2584
+  (0.0ms) rollback transaction
2585
+  (0.0ms) begin transaction
2586
+ ---------------------------------------------------------------------------
2587
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_args_defined
2588
+ ---------------------------------------------------------------------------
2589
+ [ActiveJob] [NoopJob] [1745a24a-a6a1-4e34-b8e1-6ca5cc9f144e] Performing NoopJob from Test(default)
2590
+ [ActiveJob] [NoopJob] [1745a24a-a6a1-4e34-b8e1-6ca5cc9f144e] Performed NoopJob from Test(default) in 0.02ms
2591
+ [ActiveJob] Enqueued NoopJob (Job ID: 1745a24a-a6a1-4e34-b8e1-6ca5cc9f144e) to Test(default)
2592
+  (0.0ms) rollback transaction
2593
+  (0.0ms) begin transaction
2594
+ -------------------------------------------------------------------------------------------------
2595
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_args_option
2596
+ -------------------------------------------------------------------------------------------------
2597
+ [ActiveJob] Enqueued NoopJob (Job ID: eafa613f-88e0-4be9-9d0a-4318fa2524f4) to Test(default)
2598
+  (0.0ms) rollback transaction
2599
+  (0.0ms) begin transaction
2600
+ -----------------------------------------------------------------------------------
2601
+ ActiveJob::Retriable::TestAdapterTest: test_enqueued_jobs_with_wait_have_at_defined
2602
+ -----------------------------------------------------------------------------------
2603
+ [ActiveJob] Enqueued NoopJob (Job ID: 9a9f4a91-aae1-4e03-9d07-bfa6425a96c0) to Test(default) at 2017-01-04 18:14:38 UTC
2604
+  (0.0ms) rollback transaction
2605
+  (0.0ms) begin transaction
2606
+ ----------------------------------------------------------------------------
2607
+ ActiveJob::Retriable::TestAdapterTest: test_performed_jobs_has_queue_defined
2608
+ ----------------------------------------------------------------------------
2609
+ [ActiveJob] [NoopJob] [088a10c5-a73e-4ede-b76d-6560eac0088f] Performing NoopJob from Test(default)
2610
+ [ActiveJob] [NoopJob] [088a10c5-a73e-4ede-b76d-6560eac0088f] Performed NoopJob from Test(default) in 0.02ms
2611
+ [ActiveJob] Enqueued NoopJob (Job ID: 088a10c5-a73e-4ede-b76d-6560eac0088f) to Test(default)
2612
+  (0.0ms) rollback transaction
2613
+  (0.0ms) begin transaction
2614
+ -----------------------------------------------------------------------------------------------
2615
+ ActiveJob::Retriable::TestAdapterTest: test_test_adapter_handles_assert_enqueued_with_at_option
2616
+ -----------------------------------------------------------------------------------------------
2617
+ [ActiveJob] Enqueued NoopJob (Job ID: 13ebdcc8-f8c6-4834-b551-f1e7a5bdfa80) to Test(default) at 2017-01-05 12:00:00 UTC
2618
+  (0.0ms) rollback transaction
2619
+  (0.0ms) begin transaction
2620
+ ----------------------------------------------------
2621
+ ActiveJob::RetriableTest: test_reraise_on_exceptions
2622
+ ----------------------------------------------------
2623
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2624
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.11ms
2625
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2626
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2627
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.11ms
2628
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2629
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2630
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.13ms
2631
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2632
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2633
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.16ms
2634
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2635
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2636
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.2ms
2637
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2638
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2639
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.2ms
2640
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2641
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2642
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.22ms
2643
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2644
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2645
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.26ms
2646
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2647
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2648
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.29ms
2649
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2650
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2651
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.28ms
2652
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2653
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2654
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.3ms
2655
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2656
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2657
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.33ms
2658
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2659
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2660
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.36ms
2661
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2662
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2663
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.37ms
2664
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2665
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2666
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.48ms
2667
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2668
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2669
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.43ms
2670
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2671
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2672
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.59ms
2673
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2674
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2675
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.91ms
2676
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2677
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2678
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.64ms
2679
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2680
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2681
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.62ms
2682
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2683
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2684
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.57ms
2685
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2686
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2687
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.63ms
2688
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2689
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2690
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.74ms
2691
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2692
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2693
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.69ms
2694
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2695
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performing RaiseJob from Test(default)
2696
+ [ActiveJob] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Performed RaiseJob from Test(default) in 0.68ms
2697
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [701bda48-b9c3-4458-958c-48d039d48efc] Retries exhauseted at 25 attempts
2698
+  (0.0ms) rollback transaction
2699
+  (0.0ms) begin transaction
2700
+ -----------------------------------------------------------------------------------
2701
+ ActiveJob::RetriableTest: test_sets_current_exception_and_is_available_in_callbacks
2702
+ -----------------------------------------------------------------------------------
2703
+ [ActiveJob] [CallbacksJob] [e5a99a9b-5690-41bf-8b7c-a62d030913ab] Performing CallbacksJob from Test(default)
2704
+ [ActiveJob] [CallbacksJob] [e5a99a9b-5690-41bf-8b7c-a62d030913ab] Performed CallbacksJob from Test(default) in 0.09ms
2705
+ [ActiveJob] Enqueued CallbacksJob (Job ID: e5a99a9b-5690-41bf-8b7c-a62d030913ab) to Test(default)
2706
+  (0.0ms) rollback transaction
2707
+  (0.0ms) begin transaction
2708
+ ------------------------------------------------------------------------------
2709
+ ActiveJob::RetriableTest: test_failed_job_is_retried_until_specified_max_retry
2710
+ ------------------------------------------------------------------------------
2711
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2712
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.1ms
2713
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 1)
2714
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2715
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.11ms
2716
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 2)
2717
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2718
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.14ms
2719
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 3)
2720
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2721
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.16ms
2722
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 4)
2723
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2724
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.2ms
2725
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 5)
2726
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2727
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.19ms
2728
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 6)
2729
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2730
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.23ms
2731
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 7)
2732
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2733
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.25ms
2734
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 8)
2735
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2736
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.28ms
2737
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/max_job.rb:6:in `perform' (attempted 9)
2738
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performing MaxJob from Test(default)
2739
+ [ActiveJob] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Performed MaxJob from Test(default) in 0.3ms
2740
+ [ActiveJob] [ActiveJob::Retriable] [MaxJob] [75ffcf5d-5abf-4ccf-be49-1ab56e20941e] Retries exhauseted at 10 attempts
2741
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2742
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2743
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2744
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2745
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2746
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2747
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2748
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2749
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2750
+ [ActiveJob] Enqueued MaxJob (Job ID: 75ffcf5d-5abf-4ccf-be49-1ab56e20941e) to Test(default) at 2017-01-04 19:07:53 UTC
2751
+  (0.0ms) rollback transaction
2752
+  (0.0ms) begin transaction
2753
+ ------------------------------------------------------------
2754
+ ActiveJob::RetriableTest: test_print_to_stderr_on_exceptions
2755
+ ------------------------------------------------------------
2756
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2757
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.09ms
2758
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2759
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2760
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.11ms
2761
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2762
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2763
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.14ms
2764
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2765
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2766
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.19ms
2767
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2768
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2769
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.22ms
2770
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2771
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2772
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.23ms
2773
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2774
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2775
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.22ms
2776
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2777
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2778
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.25ms
2779
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2780
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2781
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.29ms
2782
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2783
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2784
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.3ms
2785
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2786
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2787
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.32ms
2788
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2789
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2790
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.38ms
2791
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2792
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2793
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.36ms
2794
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2795
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2796
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.39ms
2797
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2798
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2799
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.4ms
2800
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2801
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2802
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.43ms
2803
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2804
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2805
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.47ms
2806
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2807
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2808
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.47ms
2809
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2810
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2811
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.47ms
2812
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2813
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2814
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.51ms
2815
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2816
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2817
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.53ms
2818
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2819
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2820
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.55ms
2821
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2822
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2823
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.57ms
2824
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2825
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2826
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.75ms
2827
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2828
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performing RaiseJob from Test(default)
2829
+ [ActiveJob] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Performed RaiseJob from Test(default) in 0.64ms
2830
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [032b4b93-a648-4d18-9e06-e166dd0f3fdc] Retries exhauseted at 25 attempts
2831
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2832
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2833
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2834
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2835
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2836
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2837
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2838
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2839
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2840
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2841
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2842
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2843
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2844
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2845
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2846
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2847
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2848
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2849
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2850
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2851
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2852
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2853
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2854
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2855
+ [ActiveJob] Enqueued RaiseJob (Job ID: 032b4b93-a648-4d18-9e06-e166dd0f3fdc) to Test(default) at 2017-01-08 13:35:02 UTC
2856
+  (0.1ms) rollback transaction
2857
+  (0.0ms) begin transaction
2858
+ ---------------------------------------------------------------------------------------------------------------------------------------
2859
+ ActiveJob::RetriableTest: test_raises_exception_when_include_in_an_ActiveJob_with_an_adapter_that_does_not_support_an_enqueue_at_method
2860
+ ---------------------------------------------------------------------------------------------------------------------------------------
2861
+  (0.0ms) rollback transaction
2862
+  (0.0ms) begin transaction
2863
+ ----------------------------------------------------------------------
2864
+ ActiveJob::RetriableTest: test_failed_job_is_retried_until_DEFAULT_MAX
2865
+ ----------------------------------------------------------------------
2866
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2867
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.09ms
2868
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 1)
2869
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2870
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.11ms
2871
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 2)
2872
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2873
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.13ms
2874
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 3)
2875
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2876
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.15ms
2877
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 4)
2878
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2879
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.17ms
2880
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 5)
2881
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2882
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.19ms
2883
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 6)
2884
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2885
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.22ms
2886
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 7)
2887
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2888
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.24ms
2889
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 8)
2890
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2891
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.34ms
2892
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 9)
2893
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2894
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.3ms
2895
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 10)
2896
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2897
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.36ms
2898
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 11)
2899
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2900
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.48ms
2901
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 12)
2902
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2903
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.32ms
2904
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 13)
2905
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2906
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 5.09ms
2907
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 14)
2908
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2909
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.46ms
2910
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 15)
2911
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2912
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.48ms
2913
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 16)
2914
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2915
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.49ms
2916
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 17)
2917
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2918
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.55ms
2919
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 18)
2920
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2921
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.57ms
2922
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 19)
2923
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2924
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.55ms
2925
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 20)
2926
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2927
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.6ms
2928
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 21)
2929
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2930
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.61ms
2931
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 22)
2932
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2933
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.64ms
2934
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 23)
2935
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2936
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.65ms
2937
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retrying due to StandardError StandardError on /home/mcoyne/Projects/activejob-retriable/test/dummy/app/jobs/raise_job.rb:5:in `perform' (attempted 24)
2938
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performing RaiseJob from Test(default)
2939
+ [ActiveJob] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Performed RaiseJob from Test(default) in 0.68ms
2940
+ [ActiveJob] [ActiveJob::Retriable] [RaiseJob] [254ba972-dd8a-4a60-a9d4-bcc222fb543a] Retries exhauseted at 25 attempts
2941
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2942
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2943
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2944
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2945
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2946
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2947
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2948
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2949
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2950
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2951
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2952
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2953
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2954
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2955
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2956
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2957
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2958
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2959
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2960
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2961
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2962
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2963
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2964
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2965
+ [ActiveJob] Enqueued RaiseJob (Job ID: 254ba972-dd8a-4a60-a9d4-bcc222fb543a) to Test(default) at 2017-01-08 13:34:38 UTC
2966
+  (0.1ms) rollback transaction
2967
+  (0.0ms) begin transaction
2968
+ ----------------------------------------------------
2969
+ ActiveJob::RetriableTest: test_invokes_all_callbacks
2970
+ ----------------------------------------------------
2971
+ [ActiveJob] [CallbacksJob] [57baa3f0-a8ce-4a74-9562-afabfb6bc66a] Performing CallbacksJob from Test(default)
2972
+ [ActiveJob] [CallbacksJob] [57baa3f0-a8ce-4a74-9562-afabfb6bc66a] Performed CallbacksJob from Test(default) in 0.08ms
2973
+ [ActiveJob] Enqueued CallbacksJob (Job ID: 57baa3f0-a8ce-4a74-9562-afabfb6bc66a) to Test(default)
2974
+  (0.1ms) rollback transaction
2975
+  (0.0ms) begin transaction
2976
+ ----------------------------------------------------------------------------
2977
+ ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_is_retried
2978
+ ----------------------------------------------------------------------------
2979
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performing RescueJob from Test(default)
2980
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performed RescueJob from Test(default) in 0.09ms
2981
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performing RescueJob from Test(default)
2982
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performed RescueJob from Test(default) in 0.1ms
2983
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performing RescueJob from Test(default)
2984
+ [ActiveJob] [RescueJob] [80ff8ac0-a705-4b06-b980-81129eb5c57c] Performed RescueJob from Test(default) in 0.14ms
2985
+ [ActiveJob] Enqueued RescueJob (Job ID: 80ff8ac0-a705-4b06-b980-81129eb5c57c) to Test(default) at 2017-01-04 18:14:38 UTC
2986
+ [ActiveJob] Enqueued RescueJob (Job ID: 80ff8ac0-a705-4b06-b980-81129eb5c57c) to Test(default) at 2017-01-04 18:14:38 UTC
2987
+ [ActiveJob] Enqueued RescueJob (Job ID: 80ff8ac0-a705-4b06-b980-81129eb5c57c) to Test(default) at 2017-01-04 18:14:38 UTC
2988
+  (0.0ms) rollback transaction
2989
+  (0.0ms) begin transaction
2990
+ ---------------------------------------------------------------------------------------------
2991
+ ActiveJob::RetriableTest: test_failed_job_with_custom_rescue_from_uses_custom_retry_wait_time
2992
+ ---------------------------------------------------------------------------------------------
2993
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performing RescueJob from Test(default)
2994
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performed RescueJob from Test(default) in 0.08ms
2995
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performing RescueJob from Test(default)
2996
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performed RescueJob from Test(default) in 0.1ms
2997
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performing RescueJob from Test(default)
2998
+ [ActiveJob] [RescueJob] [1c5dc209-a322-449c-a78e-7029857432d1] Performed RescueJob from Test(default) in 0.13ms
2999
+ [ActiveJob] Enqueued RescueJob (Job ID: 1c5dc209-a322-449c-a78e-7029857432d1) to Test(default) at 2017-01-04 18:14:38 UTC
3000
+ [ActiveJob] Enqueued RescueJob (Job ID: 1c5dc209-a322-449c-a78e-7029857432d1) to Test(default) at 2017-01-04 18:14:38 UTC
3001
+ [ActiveJob] Enqueued RescueJob (Job ID: 1c5dc209-a322-449c-a78e-7029857432d1) to Test(default) at 2017-01-04 18:14:38 UTC
3002
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activejob-retriable
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.3
4
+ version: 5.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Coyne
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-09-24 00:00:00.000000000 Z
13
+ date: 2017-01-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activejob
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.5.1
142
+ rubygems_version: 2.5.2
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Automatically retry failed jobs.