Skip to content

Commit

Permalink
Fix ref to _sanitize_tags method
Browse files Browse the repository at this point in the history
  • Loading branch information
rwhitten577 committed Dec 3, 2024
1 parent 37f7d65 commit 580bb56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hamilton/plugins/h_ddog.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def run_before_node_execution(
)
tags = node_tags.copy()
tags["hamilton.node_name"] = node_name
new_span.set_tags(DDOGTracer._sanitize_tags(tags=tags))
new_span.set_tags(self._sanitize_tags(tags=tags))
self.node_span_cache[run_id][(task_id, node_name)] = new_span

def run_after_node_execution(
Expand Down

0 comments on commit 580bb56

Please sign in to comment.