Skip to content

Commit

Permalink
Fix missing x_request_id data
Browse files Browse the repository at this point in the history
**Phenomenon and reproduction steps**

**Root cause and solution**

**Impactions**

**Test method**

**Affected branch(es)**

* main

**Checklist**

- [ ] Dependencies update required
- [ ] Common bug (similar problem in other repo)
  • Loading branch information
xiaochaoren1 committed Jan 10, 2024
1 parent e750b24 commit 83f1771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/application/tracing_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ async def trace_l7_flow(self,
dataframe_flowmetas['x_request_id_1'][index]))
new_x_request_metas -= x_request_metas
x_request_metas |= new_x_request_metas
x_requests = [L7XrequestMeta(nxr) for nxr in new_x_request_metas]
xrequests = [L7XrequestMeta(nxr) for nxr in new_x_request_metas]
# x_request_id related query
x_request_filters = []
if x_request_id_0s:
Expand Down

0 comments on commit 83f1771

Please sign in to comment.