blaxter-delayed_job 2.0.3 → 2.0.5
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.
- data/.gitignore +1 -0
- data/README.markdown +1 -0
- data/VERSION +1 -1
- data/lib/delayed/job.rb +5 -1
- data/lib/delayed/worker.rb +2 -0
- metadata +3 -3
data/.gitignore
CHANGED
data/README.markdown
CHANGED
@@ -185,6 +185,7 @@ You can invoke `rake jobs:clear` to delete all jobs in the queue.
|
|
185
185
|
|
186
186
|
Changes
|
187
187
|
-------
|
188
|
+
* 2.0.4: Add `Delayed::HIDE_BACKTRACE` for showing only the first line of the errors avoiding long backtraces
|
188
189
|
* 2.0.3: The only_for feature wasn't working at all
|
189
190
|
* 2.0.2: Only update run_at when it's gonna be executed another time for sure (attempts < max_attempts)
|
190
191
|
* 2.0.1: named_scope Delayed::Job.failed/finished/unfinished (jobs that have failed, have finished ok or still haven't been done)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.5
|
data/lib/delayed/job.rb
CHANGED
@@ -238,7 +238,11 @@ module Delayed
|
|
238
238
|
# This is a good hook if you need to report job processing errors in additional or different ways
|
239
239
|
def log_exception(error)
|
240
240
|
Delayed::Worker.logger.error "* [JOB] #{name} failed with #{error.class.name}: #{error.message} - #{attempts} failed attempts"
|
241
|
-
Delayed::
|
241
|
+
if Delayed::HIDE_BACKTRACE
|
242
|
+
Delayed::Worker.logger.error error.to_s.split("\n").first
|
243
|
+
else
|
244
|
+
Delayed::Worker.logger.error error
|
245
|
+
end
|
242
246
|
end
|
243
247
|
|
244
248
|
# Moved into its own method so that new_relic can trace it.
|
data/lib/delayed/worker.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 2
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 2.0.
|
8
|
+
- 5
|
9
|
+
version: 2.0.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- "Tobias L\xC3\xBCtke"
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-04-22 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|