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:
parent
fb35f15526
commit
db4ff7da6b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue