Skip to content

Commit

Permalink
fix_memory error with adding new env
Browse files Browse the repository at this point in the history
  • Loading branch information
lirshindalman committed Nov 27, 2024
1 parent 4373394 commit b10d25b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkov/arm/graph_builder/variable_rendering/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def evaluate_vertex_attribute_from_edge(self, edge_list: list[Edge]) -> None:
self.local_graph.update_vertex_attribute(
vertex_index=edge_list[0].origin,
attribute_key=edge_list[0].label,
attribute_value=new_value_to_eval if new_val_to_eval else val_to_eval,
attribute_value=new_value_to_eval if new_value_to_eval else val_to_eval,
change_origin_id=edge_list[0].dest,
attribute_at_dest=attr_path,
)
Expand Down

0 comments on commit b10d25b

Please sign in to comment.