Jenkins or Jira issues are not downloaded correctly. The fetch.py file's function fetch downloads only 50 issues at a time and pagination does not work either as everytime the 50 first issues are downloaded.
I tested the code with several Jira projects and the Jenkins project provided as an example. All tested projects had the same problem.
Apparently the Jira REST API's syntax has changed which causes the problem. I fixed the issue by changing start_at to startAt and max_results to maxResults. Example of my fix is below
Jenkins or Jira issues are not downloaded correctly. The fetch.py file's function
fetch
downloads only 50 issues at a time and pagination does not work either as everytime the 50 first issues are downloaded.I tested the code with several Jira projects and the Jenkins project provided as an example. All tested projects had the same problem.
Apparently the Jira REST API's syntax has changed which causes the problem. I fixed the issue by changing
start_at
tostartAt
andmax_results
tomaxResults
. Example of my fix is below