I am sending API post call to JIRA with jql containing more than 500 issues ids in body but after 1minute or more processing it returns 404 null error. Working well for smaller number of issues ids.
I don't know it is request timeout or what. Please tell me solution in both cases if it is timeout or some other problem. What can I do to overcome this problem and get all the issues?
JQL format:
{"jql": id = 21313 or id = 34234 or ...... 500+ ids, "maxResults": 1000}
issues id in "jql" json above are fetched from another rest call.
Thanks in Advance
Hi!
Could you rewrite your request using pagination? like this https://github.com/AstroMatt/atlassian-python-api/blob/master/atlassian/jira.py#L31
Because it is not good way extend maxResults.
Cheers,
Gonchik Tsymzhitov
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.