You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently listing events or issues that surpasses the page limit leads to an infinite loop. That's because the "next" page never is accessed only the first one. This is showed below:
events=self.api.project_events.list(organization, project)
all_events.extend(events.body)
links=parse_header_links(events.headers.get('Link'))
whilelinks[1]['results'] =='true':
events=self.api.project_events.list(organization, project) # same page is accessedall_events.extend(events.body)
# links is never updated
The text was updated successfully, but these errors were encountered:
Currently listing events or issues that surpasses the page limit leads to an infinite loop. That's because the "next" page never is accessed only the first one. This is showed below:
The text was updated successfully, but these errors were encountered: