-
Notifications
You must be signed in to change notification settings - Fork 2k
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
alwaysUsePagedFluxMaxItemCount #36847
alwaysUsePagedFluxMaxItemCount #36847
Conversation
API change check APIView has identified API level changes in this PR and created following API reviews. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @xinlian12
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
e9023c8
to
45cc67a
Compare
/azp run java - cosmos - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Failed test: maxValueExceedingDefinedLimitStillWorksWithoutException Tested locally succeeded and the changes in this PR does not touch metrics related logic. |
/check-enforcer override |
Issue:
PageSize
frombyPage
is not always being honoredCosmosQueryRequestOption option = new CosmosQueryRequestOption()
Step 1: query(option).byPage(pageSize)
Step 2: query(option).byPage() -> we are expecting it to use the default pageSize in
CosmosPagedFluxOptions
, but for certain scenario, it is reusing the pageSize from step1