Skip to content

Commit

Permalink
update test, fix where clause
Browse files Browse the repository at this point in the history
  • Loading branch information
Parker-Stafford committed Oct 30, 2024
1 parent b4a2089 commit cc59302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/server/api/types/ProjectSession.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async def trace_latency_ms_quantile(
None,
None,
probability,
models.Trace.project_session_rowid == self.project_rowid,
models.Trace.project_session_rowid == self.id_attr,
)
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ async def test_latency_ms_quantiles_p25_p50_p75(
TimeRange(start=start_time, end=end_time),
"'_5_' in name" if kind == "span" else None,
probability,
None,
)
for kind in kinds
for id_ in range(10)
Expand Down

0 comments on commit cc59302

Please sign in to comment.