The code changes fix a bug in the dedupe_node_list function where a node instance was not found in the node map. The bug is now handled by logging a warning message and skipping the iteration. This ensures that the function continues to execute without any errors.
[!IMPORTANT]
Fixes bug in dedupe_node_list by handling missing node instances with a warning and skipping iteration.
Bug Fix:
In dedupe_node_list function, handle missing node instances in node_map by logging a warning and skipping the iteration.
Ensures function execution continues without errors when a node is not found.
This description was created by for 1544425ade744e5c6707ecf50e171f61b61d6947. It will automatically update as commits are pushed.
The code changes fix a bug in the
dedupe_node_list
function where a node instance was not found in the node map. The bug is now handled by logging a warning message and skipping the iteration. This ensures that the function continues to execute without any errors.