Instead of using {%- set source_node_name = col.sourceColumns[0].node.name -%} to get the source node information, {%- set snapshot_loc = storageLocations | selectattr('name', "eq", col.sourceColumns[0].node.location.name) | list | first -%} {%- set snapshot_node_name = col.sourceColumns[0].node.name -%} is used
Contributors
@markvdh for finding this issue and proposing a fix!
Changes
{%- set source_node_name = col.sourceColumns[0].node.name -%}
to get the source node information,{%- set snapshot_loc = storageLocations | selectattr('name', "eq", col.sourceColumns[0].node.location.name) | list | first -%} {%- set snapshot_node_name = col.sourceColumns[0].node.name -%}
is usedContributors