Skip to content

Commit

Permalink
fetch 1000 files at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Mar 12, 2024
1 parent e1c3e13 commit a998162
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Fetch latest release
run: |
Expand Down
3 changes: 2 additions & 1 deletion conda_forge_paths/path_to_artifacts_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def update_from_repodata(db):
leave=False,
total=len(to_add) + len(null_ts_artifacts),
),
100,
1000,
):
ids = db.execute(
"""
Expand All @@ -340,6 +340,7 @@ def update_from_repodata(db):
total=len(futures),
desc="Fetching files",
leave=False,
disable=os.environ.get("CI"),
):
name = futures[future]
try:
Expand Down

0 comments on commit a998162

Please sign in to comment.