fanforce-worker 0.14.1 → 0.14.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 +8 -8
- data/lib/fanforce/worker/version.rb +1 -1
- data/lib/fanforce/worker/worker.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjA0NGUyMzZiYTU0YzFiMWQ0NTM2NGI3MzI2OTUzOGU1MDg4MDg3OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OWE0M2FkMDNjZThiNTE3ZmJmNTc2YzQxNGNiNTBjNDhmMTAxYTc2MA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzU5OTA0ZmY4ZmIzZGIwYjhmMjM0OGE1ZWQ2NmQ3ZjVkMDExMzNkNTNhNmI2
|
10
|
+
OTM1YjM1NmFmMGVjMjRjNWZmYTViZDgzZDhkYWM1MjM5NWY0NzE0MjQzYjZh
|
11
|
+
NzRlNGMyZjY0ZTE0NDE2NzViZWIxZTg0YWQzNDg0ZjVjZDI3MzY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjdjMWI2ODdlNjdiNzJiOGI0MTk2ZDJhNzczZGE0YWE4ZTg2ZjdmMjA2ZjA4
|
14
|
+
M2NjMzBjMDY2MzkzZDAxNjAxYzQxYjFiMDFmM2Y5OWQxZGZiMTE5NzkwYmQw
|
15
|
+
NGU0NDZmODcyZTg0MmUxMWY0NWM2NDBjZWI4ZDA1YzQ2M2I5Yjc=
|
@@ -173,9 +173,9 @@ class Fanforce::Worker
|
|
173
173
|
self.delete_job
|
174
174
|
puts " FINISHED JOB #{job_num+=1}"
|
175
175
|
rescue Timeout::Error => e
|
176
|
-
handle_job_error(
|
176
|
+
handle_job_error(e, job, job_data)
|
177
177
|
rescue Exception => e
|
178
|
-
handle_job_loading_error(
|
178
|
+
handle_job_loading_error(e, job, job_data)
|
179
179
|
end
|
180
180
|
|
181
181
|
def time_remaining
|
@@ -207,7 +207,7 @@ class Fanforce::Worker
|
|
207
207
|
self.delete_job(job)
|
208
208
|
|
209
209
|
rescue Exception => e
|
210
|
-
handle_job_error(
|
210
|
+
handle_job_error(e, job, job_data)
|
211
211
|
end
|
212
212
|
|
213
213
|
def self.handle_job_loading_error(e, job, job_data)
|