Skip to content

Commit

Permalink
increase default page size to 1_000_000
Browse files Browse the repository at this point in the history
  • Loading branch information
ntessore committed May 13, 2024
1 parent 7d03abb commit ebeff34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heracles/catalog/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def select(self, selection):
class CatalogBase(metaclass=ABCMeta):
"""abstract base class for base catalogues (not views)"""

default_page_size: int = 100_000
default_page_size: int = 1_000_000
"""default value for page size"""

def __init__(self):
Expand Down

0 comments on commit ebeff34

Please sign in to comment.