async-job 0.9.1 → 0.9.2
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/async/job/processor/redis/server.rb +6 -1
- data/lib/async/job/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +1 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eeb1fabbd3ce8f2806c1b3c3c4fc5c81c0f661e92d49f29a26ed5dac46960ab9
|
4
|
+
data.tar.gz: 4187e3a56169deffce40590a9ebda6e075ec66f0450e8808cb5af6bc2ab7ce13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d1ef79240e7ee4928675166a2e4ebf608910b559401aefb7eba8088edb47fa50a08b7a784dadb4b23708627c53d1275b2559fb70ed1a2e13387680dde14fbe2
|
7
|
+
data.tar.gz: 5bbdefdc4c753d464a30f548f8a1d91f350f54d92248732de0e9c4bca012bda8422c803cea0c4547b708804b354677d18bb5df76c29fc42744a537fcb1f32e94
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -81,6 +81,11 @@ module Async
|
|
81
81
|
|
82
82
|
protected
|
83
83
|
|
84
|
+
# Dequeue a job from the ready list and process it.
|
85
|
+
#
|
86
|
+
# If the job fails for any reason, it will be retried.
|
87
|
+
#
|
88
|
+
# If you do not desire this behavior, you should catch exceptions in the delegate.
|
84
89
|
def dequeue(parent)
|
85
90
|
_id = @processing_list.fetch
|
86
91
|
|
@@ -92,7 +97,7 @@ module Async
|
|
92
97
|
@processing_list.complete(id)
|
93
98
|
rescue => error
|
94
99
|
Console::Event::Failure.for(error).emit(self, "Job failed with error!", id: id)
|
95
|
-
@processing_list.
|
100
|
+
@processing_list.retry(id)
|
96
101
|
end
|
97
102
|
ensure
|
98
103
|
@processing_list.retry(_id) if _id
|
data/lib/async/job/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
metadata.gz.sig
CHANGED
Binary file
|