Skip to content

Commit

Permalink
update merge strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-gorules committed Dec 3, 2024
1 parent ec1c395 commit d05ee8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/engine/src/handler/traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl GraphWalker {
let default_map = Variable::empty_object();
iter.fold(Variable::empty_object(), |mut prev, curr| {
let data = self.node_data.get(&curr).unwrap_or(&default_map);
prev.merge(data)
prev.merge_clone(data)
})
}

Expand Down

0 comments on commit d05ee8a

Please sign in to comment.