Skip to content

Commit

Permalink
fix mongodb aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jun 17, 2024
1 parent 3e23d94 commit 9fc0cba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/relay/src/main/RelayListing.scala
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ final class RelayListing(
"$filter" -> $doc(
"input" -> "$tours",
"as" -> "tour",
"cond" -> "$$tour.live",
"limit" -> 1
"cond" -> "$$tour.live"
// "limit" -> 1 // TODO unsupported by mongodb 4.4 (but also not needed here)
)
)
),
Expand Down

0 comments on commit 9fc0cba

Please sign in to comment.