collab: Look up users using github_user_id when backfilling (#16708)

This PR updates the user backfiller to look up the GitHub users using
the `github_user_id` instead of `github_login`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-22 19:58:04 -04:00 committed by GitHub
parent fb35f15526
commit db4ff7da6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,8 +75,8 @@ impl UserBackfiller {
for user in users_missing_github_user_created_at {
match self
.fetch_github_user(&format!(
"https://api.github.com/users/{}",
user.github_login
"https://api.github.com/user/{}",
user.github_user_id
))
.await
{