Skip to content
Snippets Groups Projects
Verified Commit a69e576c authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

swh.lister.gitlab: Fix the total pages reading instruction

parent cd98af77
No related branches found
No related tags found
1 merge request!26Extract boundaries information for the incremental lister
......@@ -60,6 +60,7 @@ class IncrementalGitLabLister(ListerTaskBase):
def run_task(self, *args, **kwargs):
lister = self.new_lister(*args, **kwargs)
total, _, _ = lister.get_pages_information()
_, total_pages, _ = lister.get_pages_information()
# stopping as soon as existing origins for that instance are detected
return lister.run(min_bound=1, max_bound=total, check_existence=True)
return lister.run(min_bound=1, max_bound=total_pages,
check_existence=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment