You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When from = 0 and pagination_depth = 100 is sent then pagination_depth does not work.
case 1 from = 0, size =10, pagination_depth = 100
case 2 from = 5, size =10, pagination_depth = 100
case 1 and case 2 results does not have same result reference.
How can one reproduce the bug?
Spin up the cluster and perform above cases
What is the expected behavior?
pagination_depth should work when from =0 is sent
results reference should be same in both the cases
Do you have any additional context?
The issue is due to following behavior when from =0 is sent then we simply use from + size formula which ignores pagination_depth value.
The text was updated successfully, but these errors were encountered:
What is the bug?
case 2 from = 5, size =10, pagination_depth = 100
case 1 and case 2 results does not have same result reference.
How can one reproduce the bug?
Spin up the cluster and perform above cases
What is the expected behavior?
Do you have any additional context?
The issue is due to following behavior when from =0 is sent then we simply use from + size formula which ignores pagination_depth value.
The text was updated successfully, but these errors were encountered: