SchemaGenerator: Avoid crashing with pagesizeless paginators by akx · Pull Request #5086 · encode/django-rest-framework (original) (raw)

When using master (bd768d6) with LimitOffsetPagination, SchemaGenerator crashes:

  File "rest_framework/schemas.py", line 607, in get_pagination_fields
    if not pagination or not pagination.page_size:
AttributeError: type object 'LimitOffsetPagination' has no attribute 'page_size'

This is related to #4998.