Skip to content

Commit

Permalink
Increase page size to 500
Browse files Browse the repository at this point in the history
  • Loading branch information
knabar committed Dec 12, 2023
1 parent a958acf commit aa3e827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omeroweb/webclient/controller/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def getFilesByObject(self, parent_type=None, parent_ids=None):

# Perform the full query and limit the results so that we don't get
# overwhelmed
params.page(0, 100) # offset, limit
params.page(0, 500) # offset, limit
columns = "fa.id, ofile.name"
order_by = "ORDER BY ofile.name, fa.id DESC"
query = self.FILES_BY_OBJECT_QUERY.format(
Expand Down

0 comments on commit aa3e827

Please sign in to comment.