-
-
Notifications
You must be signed in to change notification settings - Fork 873
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
Only 100 results fetched if maxResults
is larger than 100
#1819
Comments
I just tested this locally with |
With the exact same snippet I get the correct output: results with maxResults=False: 3187
results with maxResults=200: 200 Also tested with 3.6.0. Can you give any additional information, maybe dig into where the batching code stops prematurely? Jannik Meinecke jannik.meinecke@mercedes-benz.com on behalf of MBition GmbH. |
@rynkk I don't see any batching code if Line 760 in ff6985b
Note that Line 751 in ff6985b
Looks like it depends on the max results the server is configured to return. Maybe your (private) jira instance is configured differently than Jira cloud? |
Hi there, Just using this package with JIRA Cloud (not self-hosted) and if I put any number greater than |
Bug summary
Problem
When I request more than 100 max results (for example:
maxResults=200
) via:I expect the client to batch get all pages and return me 200 results.
However, it unexpectedly limits the number of results to 100.
Is there an existing issue for this?
Jira Instance type
Jira Cloud (Hosted by Atlassian)
Jira instance version
No response
jira-python version
3.6.0
Python Interpreter version
3.8
Which operating systems have you used?
Reproduction steps
Stack trace
Expected behaviour
I expect the client to batch get all pages and return me 200 results.
However, it unexpectedly limits the number of results to 100.
Additional Context
No response
The text was updated successfully, but these errors were encountered: