Skip to content

Commit

Permalink
Increase remote-tagger timeout to fetch auth token (#34829)
Browse files Browse the repository at this point in the history
(cherry picked from commit bf02c0b)
  • Loading branch information
YoannGh authored and github-actions[bot] committed Mar 7, 2025
1 parent bc4ce7a commit fbf3a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comp/core/tagger/impl-remote/remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func (t *remoteTagger) Start(ctx context.Context) error {
expBackoff := backoff.NewExponentialBackOff()
expBackoff.InitialInterval = 50 * time.Millisecond
expBackoff.MaxInterval = 500 * time.Millisecond
expBackoff.MaxElapsedTime = 5 * time.Second
expBackoff.MaxElapsedTime = 30 * time.Second
err = backoff.Retry(func() error {
select {
case <-t.ctx.Done():
Expand Down

0 comments on commit fbf3a63

Please sign in to comment.