Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix update-repos-metadata script #212

Merged
merged 1 commit into from
Dec 18, 2024
Merged

Conversation

zakarialaoui10
Copy link
Contributor

I noticed that the script was refreshing the metadata of the same repositories repeatedly, as it was fetching the most recently updated repositories first

To resolve this, I updated the sorting logic to prioritize repositories with the oldest xata.updatedAt timestamp

  const repos = await getXataClient()
    .db.os_repositories.select(["url", "id"])
    .sort("xata.updatedAt", "asc") // Instead of .sort("xata.updatedAt", "desc") 

Note

I didn’t test it in a production environment, so I recommend running the script first to verify that the sorting works as expected

@yjose yjose merged commit 49bc612 into geeksblabla:master Dec 18, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants