Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmd/publisher/auth/github-at.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,10 @@ func (g *GitHubATProvider) pollForToken(ctx context.Context, deviceCode string)
return "", err
}

if tokenResp.Error == "authorization_pending" {
// User hasn't authorized yet, wait and retry
if tokenResp.Error == "authorization_pending" || tokenResp.Error == "slow_down" {
if tokenResp.Error == "slow_down" {
interval += 5
}
time.Sleep(time.Duration(interval) * time.Second)
continue
}
Expand Down
Loading