ytti/oxidized · error · Oxidized::NotSupported
Oxidized::NotSupported
Error message
Oxidized::NotSupported
What it means
Error "Oxidized::NotSupported" thrown in ytti/oxidized.
Source
Thrown at lib/oxidized/nodes.rb:199
node.stats = old[i].stats
node.last = old[i].last
end
rescue NodeNotFound
# Do nothing:
# when a node is not found, we have nothing to do:
# it has already been loaded by replace(nodes) and there are no
# stats to copy
end
sort_by! { |x| x.last.nil? ? Time.new(0) : x.last.end }
end
def yield_node_output(node_name)
with_lock do
node = find { |n| n.name == node_name }
raise(NodeNotFound, "unable to find '#{node_name}'") if node.nil?
output = node.output.new
raise NotSupported unless output.respond_to? :fetch
yield node, output
end
end
end
end
View on GitHub (pinned to 687ed4262d)
When it happens
Trigger: Thrown at lib/oxidized/nodes.rb:199 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of ytti/oxidized@687ed4262d (2026-08-23).
Data as JSON: /api/errors/197aa07a447645c1.
Report an issue: GitHub.