diff options
author | Saku Ytti <saku@ytti.fi> | 2017-01-11 21:32:59 +0200 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2017-01-11 21:32:59 +0200 |
commit | 571b77d285afe6a9085369d46b4c57ebd58a5ca1 (patch) | |
tree | d581ba3bc5d6cfad74b5c789cc48eaacab148b56 /lib/oxidized/nodes.rb | |
parent | 88811da1a72b3f7d9ad51b54386478426aeb8bb2 (diff) |
add one thread when requesting next via API
Diffstat (limited to 'lib/oxidized/nodes.rb')
-rw-r--r-- | lib/oxidized/nodes.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/oxidized/nodes.rb b/lib/oxidized/nodes.rb index f5a1ad0..011bfc3 100644 --- a/lib/oxidized/nodes.rb +++ b/lib/oxidized/nodes.rb @@ -4,7 +4,7 @@ module Oxidized class Oxidized::NotSupported < OxidizedError; end class Oxidized::NodeNotFound < OxidizedError; end class Nodes < Array - attr_accessor :source + attr_accessor :source, :jobs alias :put :unshift def load node_want=nil with_lock do @@ -73,6 +73,7 @@ module Oxidized # set last job to nil so that the node is picked for immediate update n.last = nil put n + jobs.want += 1 end end end |