I am trying to fetch all the issue from redmine
list_1 = []
issuess = conn_red.issue.all()
for i in issuess:
list_1.append(i)
print len(list_1)
The print statement result is 575
But In Redmine, I have 2735 issue. I wonder,
- why it is restricting to 575.
- Its there any limitation in number of count
- Any other possible way to fetch all record