Skip to content

Commit

Permalink
fix typo missing
Browse files Browse the repository at this point in the history
  • Loading branch information
taloric authored and sharang committed May 10, 2024
1 parent c94c8fd commit 281894f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/application/l7_flow_tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2352,7 +2352,7 @@ def sort_by_x_request_id(traces: list):
_set_parent(child, parent_trace,
"trace mounted due to x_request_id")
elif len(parent_traces) == 1:
_set_parent(child, parent_trace[0],
_set_parent(child, parent_traces[0],
"trace mounted due to x_request_id")
else:
# continue outer loop
Expand Down

0 comments on commit 281894f

Please sign in to comment.