Skip to content

Commit

Permalink
Merge branch 'main' into kp/workaround-fuel-dup
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-della-vedova committed Apr 25, 2024
2 parents 78c28fd + ed39754 commit 1939c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmf_building_map_tools/pit_crew/pit_crew.py
Expand Up @@ -844,7 +844,7 @@ def build_and_update_cache(cache_file_path=None, write_to_cache=True,
while status == 200 and not break_flag:
logger.info("Fetching page: %d" % page)

resp = requests.get("%s?page=%d" % (url_base, page))
resp = requests.get("%s?page=%d&per_page=100" % (url_base, page))
status = resp.status_code
page += 1

Expand Down

0 comments on commit 1939c6c

Please sign in to comment.