-
Notifications
You must be signed in to change notification settings - Fork 3
feat!: Add per-execution runId, at-most-once tracking, and cross-process tracker resumption #133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2b997fa
211ead4
6237d6c
d895e64
7839104
df722f9
a6e9612
59c574e
6bf91fa
ba5421a
4c0451b
82cb40a
7050ab0
31dcc8f
08da63a
ae5d752
fc814c6
5313ce5
04f14eb
dd44577
84a1ab1
a41c7e3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -200,7 +200,7 @@ def flush(self, graph: AgentGraphDefinition) -> None: | |
| node = graph.get_node(node_key) | ||
| if not node: | ||
| continue | ||
| config_tracker = node.get_config().tracker | ||
| config_tracker = node.get_config().create_tracker() | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Callback handler creates new tracker per flush, losing runId correlationMedium Severity The Reviewed by Cursor Bugbot for commit a41c7e3. Configure here. |
||
| if not config_tracker: | ||
| continue | ||
|
|
||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wasted graph tracker created solely for debug logging
Low Severity
_build_graphcallsself._graph.create_tracker()and instantiates a fullAIGraphTrackerjust to read itsgraph_keyproperty for a debug log message. The graph key is readily available fromself._graph._agent_graph.keywithout creating a tracker object. This adds an unnecessary side effect in a method that otherwise only builds the graph structure.Reviewed by Cursor Bugbot for commit a41c7e3. Configure here.