Yo, I feel you on the retry spam concern. You can totally limit retries by time using `SetRetryWaitTime()` and `SetRetryMaxWaitTime()`.
For example:
```go
client.SetRetryWaitTime(2 * time.Second)
client.SetRetryMaxWaitTime(10 * time.Second)
```
This way, it won’t go crazy retrying too fast. Also, check out the official docs—they’ve got some solid examples for go-resty retrycondition.
For example:
```go
client.SetRetryWaitTime(2 * time.Second)
client.SetRetryMaxWaitTime(10 * time.Second)
```
This way, it won’t go crazy retrying too fast. Also, check out the official docs—they’ve got some solid examples for go-resty retrycondition.
