Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sizes of cursors and pages are integers in REST. #3938

Merged
merged 1 commit into from
Jul 19, 2024
Merged

Sizes of cursors and pages are integers in REST. #3938

merged 1 commit into from
Jul 19, 2024

Commits on Jul 19, 2024

  1. Sizes of cursors and pages are integers in REST.

    This change addresses the problem of uint64 not being representable in
    javascript, leading to a swagger definition of two numbers related to
    cursors, namely `size` and `total_records`, having string type rather
    than integer. Using a uint32 generates the desired type and is
    sufficient for paging purposes.
    
    This is a breaking change, which is why this commit contains changes
    to CLI as well. For the record, the feature is currently under feature
    flag.
    
    Fixes #3934
    blkt committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    eaae653 View commit details
    Browse the repository at this point in the history