7668: crunch-dispatch gets node stats from properties field.
authorBrett Smith <brett@curoverse.com>
Wed, 28 Oct 2015 15:37:58 +0000 (11:37 -0400)
committerBrett Smith <brett@curoverse.com>
Wed, 28 Oct 2015 15:37:58 +0000 (11:37 -0400)
This information moved from the info field to the properties field as
part of #3605.  This simply updates crunch-dispatch to catch up with
the change.

services/api/script/crunch-dispatch.rb

index 4a1fdbce758d7b552f529419f7c37f970299d298..9fb25664a41eb5befe7067aef83686fb5fcdc1f6 100755 (executable)
@@ -194,7 +194,7 @@ class Dispatcher
     # Otherwise, return nil.
     need_procs = NODE_CONSTRAINT_MAP.each_pair.map do |job_key, node_key|
       Proc.new do |node|
-        positive_int(node.info[node_key], 0) >=
+        positive_int(node.properties[node_key], 0) >=
           positive_int(job.runtime_constraints[job_key], 0)
       end
     end