From: Brett Smith Date: Wed, 28 Oct 2015 15:37:58 +0000 (-0400) Subject: 7668: crunch-dispatch gets node stats from properties field. X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/ff6753eaddf04575b9e8af7a7101b9c0f2d6903e 7668: crunch-dispatch gets node stats from properties field. 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. --- diff --git a/services/api/script/crunch-dispatch.rb b/services/api/script/crunch-dispatch.rb index 4a1fdbce75..9fb25664a4 100755 --- a/services/api/script/crunch-dispatch.rb +++ b/services/api/script/crunch-dispatch.rb @@ -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