diff options
author | ytti <saku@ytti.fi> | 2017-02-11 04:43:49 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-11 04:43:49 +0400 |
commit | 6f67c1a9f8288b8a090f4834caba4b7f181ddf18 (patch) | |
tree | ab4825f4bc6a79a48bedd7fe92fc36eeafb513f2 /lib/oxidized/nodes.rb | |
parent | e6e72296d7e22eaa6fe20fd0b2007d3b58a078a2 (diff) | |
parent | 64fc260a4da53af34f1f8288d4ec68c6583907ee (diff) |
Merge pull request #715 from Netflix-Skunkworks/only-next-with-new-thread
Next with new thread functionality (v2)
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..6751c7a 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 if Oxidized.config.next_adds_job? end end end |