Skip to content

Commit

Permalink
add allowUseDisk to ReadModelTenantQueries.getCertifiedAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
beetlecrunch committed Jan 31, 2024
1 parent 4c98802 commit 48504d8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ object ReadModelTenantQueries extends ReadModelQuery {
filterPipeline ++
Seq(count("totalCount"), project(computed("data", Document("""{ "totalCount" : "$totalCount" }""")))),
offset = 0,
limit = Int.MaxValue
limit = Int.MaxValue,
allowDiskUse = true
)
} yield PaginatedResult(results = consumers, totalCount = count.headOption.map(_.totalCount).getOrElse(0))
}
Expand Down

0 comments on commit 48504d8

Please sign in to comment.