Bug #3976
Updated by Tom Clegg about 10 years ago
Current behavior: * 'Queued jobs', 'Busy nodes' and 'Idle nodes' all show 0. Screenshot attached. * Investigation reveals node_ping_at is old (evidently ping stopped working ~Sep3). Desired behavior: * Show busy and idle nodes regardless of last_ping_at. Fix: * In NodesController#index, filter with something like @Node.all.select { |node| ['busy','idle'].includes? node.crunch_worker_state }@ instead of last_ping_at.