1
0
Fork 0

[golang] fix lint warnings

This commit is contained in:
Julien Dessaux 2025-03-28 22:03:37 +01:00
parent befa188552
commit e3541e4e7f
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 7 additions and 16 deletions

View file

@ -196,7 +196,7 @@ func (c *Client) sendOne(method string, uri *url.URL, payload any) (*APIMessage,
select {
case <-c.ctx.Done():
return nil, fmt.Errorf("failed to sendOne: ctx cancelled")
case <-time.After(e.RetryAfter.Duration() * time.Second):
case <-time.After(time.Until(e.Reset)):
}
return c.sendOne(method, uri, payload)
}