Compare commits

..

No commits in common. "a77bcda3aae46765daae681f18020f1bcc1bcf9d" and "8729bb0108d87be391855c57d7d69a336bffa0ca" have entirely different histories.

2 changed files with 5 additions and 10 deletions

View file

@ -15,10 +15,10 @@ jobs:
- uses: oven-sh/setup-bun@v2 - uses: oven-sh/setup-bun@v2
with: with:
bun-version: latest bun-version: latest
- name: Setup tmate session # - name: Setup tmate session
uses: mxschmitt/action-tmate@v3 # uses: mxschmitt/action-tmate@v3
with: # with:
limit-access-to-actor: true # limit-access-to-actor: true
- name: Run archiver script - name: Run archiver script
env: env:

View file

@ -38,14 +38,9 @@ async function getRawDatasetInfo() {
); );
return await response.json(); return await response.json();
} catch (error) { } catch (error) {
console.error( console.error(`❌ Error fetching dataset info`, error, `retrying in 5min...`);
`❌ Error fetching dataset info`,
error,
`retrying in 5min...`,
);
await new Promise((resolve) => setTimeout(resolve, 5 * 60 * 1000)); await new Promise((resolve) => setTimeout(resolve, 5 * 60 * 1000));
return await getRawDatasetInfo(); return await getRawDatasetInfo();
}
} }
async function saveDatasetInfoIntoRepo(datasetInfo: any) { async function saveDatasetInfoIntoRepo(datasetInfo: any) {