fairway 0.0.7 → 0.0.8
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/Gemfile.lock +1 -1
- data/lib/fairway/sidekiq/fetch.rb +4 -2
- data/lib/fairway/version.rb +1 -1
- data/spec/lib/fairway/fetch_spec.rb +9 -0
- metadata +2 -2
data/Gemfile.lock
CHANGED
@@ -37,7 +37,9 @@ module Fairway
|
|
37
37
|
fetches.shuffle.uniq
|
38
38
|
end
|
39
39
|
|
40
|
-
def retrieve_work
|
40
|
+
def retrieve_work(options = {})
|
41
|
+
options = { blocking: true }.merge(options)
|
42
|
+
|
41
43
|
::Sidekiq.logger.debug "#{self.class.name}#retrieve_work"
|
42
44
|
|
43
45
|
fetch_order.each do |fetch|
|
@@ -50,7 +52,7 @@ module Fairway
|
|
50
52
|
end
|
51
53
|
|
52
54
|
::Sidekiq.logger.debug "#{self.class.name}#retrieve_work got nil"
|
53
|
-
sleep 1
|
55
|
+
sleep 1 if options[:blocking]
|
54
56
|
|
55
57
|
return nil
|
56
58
|
end
|
data/lib/fairway/version.rb
CHANGED
@@ -91,6 +91,15 @@ module Fairway::Sidekiq
|
|
91
91
|
|
92
92
|
fetch.retrieve_work
|
93
93
|
end
|
94
|
+
|
95
|
+
it "doesn't sleep if blocking option is false" do
|
96
|
+
fetch.should_not_receive(:sleep)
|
97
|
+
|
98
|
+
fetchA.stub(retrieve_work: nil)
|
99
|
+
fetchB.stub(retrieve_work: nil)
|
100
|
+
|
101
|
+
fetch.retrieve_work(blocking: false)
|
102
|
+
end
|
94
103
|
end
|
95
104
|
end
|
96
105
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fairway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|