Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
axiomofjoy committed Apr 12, 2024
1 parent 0a3c385 commit d024ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/server/api/types/Trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def spans(
spans = await session.scalars(
select(models.Span)
.join(models.Trace)
.filter(models.Trace.id == self.trace_rowid)
.where(models.Trace.id == self.trace_rowid)
.options(contains_eager(models.Span.trace))
)
data = [to_gql_span(span, self.project) for span in spans]
Expand Down

0 comments on commit d024ca4

Please sign in to comment.