unique_job 0.4.0 → 0.4.1
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
- data/.rspec +2 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +16 -3
- data/lib/unique_job/util.rb +9 -7
- data/lib/unique_job/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9d6d855680edc62ab346669253c4673b6876f6661641a6b8be4228da95790b6
|
4
|
+
data.tar.gz: a50467a6416a3e8d38982a8cf183aaa93def34e8a0a6f647a43b954a8a6d4860
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a63e1bea71e94f76e050cf68442cb7503259a25995ea66501da6946c82a2a9dcdcd4cd2190d778fa16829c46e34051023cadb695b473d843baae984cf32b7a3
|
7
|
+
data.tar.gz: c7e82bd747e21a6bdbf1b12a479eb35b9f102f3466d8d87ebc7eba8e03951ace19219cb482ea86ed9762fec27c306a579609d7004a41be1bf7e05aca6132bdc6
|
data/.rspec
ADDED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
unique_job (0.4.
|
4
|
+
unique_job (0.4.1)
|
5
5
|
redis
|
6
6
|
sidekiq (> 6.0, < 7.0)
|
7
7
|
|
@@ -9,10 +9,23 @@ GEM
|
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
11
|
connection_pool (2.2.3)
|
12
|
-
|
12
|
+
diff-lcs (1.4.4)
|
13
13
|
rack (2.2.3)
|
14
14
|
rake (12.3.3)
|
15
15
|
redis (4.2.2)
|
16
|
+
rspec (3.10.0)
|
17
|
+
rspec-core (~> 3.10.0)
|
18
|
+
rspec-expectations (~> 3.10.0)
|
19
|
+
rspec-mocks (~> 3.10.0)
|
20
|
+
rspec-core (3.10.1)
|
21
|
+
rspec-support (~> 3.10.0)
|
22
|
+
rspec-expectations (3.10.1)
|
23
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
24
|
+
rspec-support (~> 3.10.0)
|
25
|
+
rspec-mocks (3.10.2)
|
26
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
27
|
+
rspec-support (~> 3.10.0)
|
28
|
+
rspec-support (3.10.3)
|
16
29
|
sidekiq (6.1.2)
|
17
30
|
connection_pool (>= 2.2.2)
|
18
31
|
rack (~> 2.0)
|
@@ -22,8 +35,8 @@ PLATFORMS
|
|
22
35
|
ruby
|
23
36
|
|
24
37
|
DEPENDENCIES
|
25
|
-
minitest (~> 5.0)
|
26
38
|
rake (~> 12.0)
|
39
|
+
rspec
|
27
40
|
unique_job!
|
28
41
|
|
29
42
|
BUNDLED WITH
|
data/lib/unique_job/util.rb
CHANGED
@@ -10,10 +10,7 @@ module UniqueJob
|
|
10
10
|
unique_key = worker.unique_key(*args)
|
11
11
|
logger.debug { "[UniqueJob] Calculate unique key worker=#{worker.class} key=#{unique_key}" }
|
12
12
|
|
13
|
-
if
|
14
|
-
logger.warn { "[UniqueJob] Don't check a job with a blank key worker=#{worker.class} key=#{unique_key}" }
|
15
|
-
yield
|
16
|
-
elsif check_uniqueness(worker, unique_key.to_s)
|
13
|
+
if check_uniqueness(worker, unique_key)
|
17
14
|
yield
|
18
15
|
else
|
19
16
|
logger.debug { "[UniqueJob] Duplicate job skipped worker=#{worker.class} key=#{unique_key}" }
|
@@ -25,13 +22,18 @@ module UniqueJob
|
|
25
22
|
end
|
26
23
|
end
|
27
24
|
|
28
|
-
def check_uniqueness(worker,
|
25
|
+
def check_uniqueness(worker, key)
|
26
|
+
if key.nil? || key.to_s.empty?
|
27
|
+
logger.warn { "[UniqueJob] Don't check a job with a blank key worker=#{worker.class} key=#{key}" }
|
28
|
+
return false
|
29
|
+
end
|
30
|
+
|
29
31
|
history = job_history(worker)
|
30
32
|
|
31
|
-
if history.exists?(
|
33
|
+
if history.exists?(key)
|
32
34
|
false
|
33
35
|
else
|
34
|
-
history.add(
|
36
|
+
history.add(key)
|
35
37
|
true
|
36
38
|
end
|
37
39
|
end
|
data/lib/unique_job/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unique_job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ts-3156
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sidekiq
|
@@ -52,6 +52,7 @@ extensions: []
|
|
52
52
|
extra_rdoc_files: []
|
53
53
|
files:
|
54
54
|
- ".gitignore"
|
55
|
+
- ".rspec"
|
55
56
|
- ".ruby-version"
|
56
57
|
- ".travis.yml"
|
57
58
|
- CODE_OF_CONDUCT.md
|