We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c679be commit 40d2675Copy full SHA for 40d2675
sdk/azcore/internal/pollers/loc/loc.go
@@ -104,8 +104,8 @@ func (p *Poller[T]) Poll(ctx context.Context) (*http.Response, error) {
104
// any 2xx other than a 202 indicates success
105
p.CurState = poller.StatusSucceeded
106
} else if resp.StatusCode == http.StatusTooManyRequests {
107
- // the request is being throttled. we DO NOT want to
108
- // include this as terminal failure so preserve the
+ // the request is being throttled. DO NOT include
+ // this as a terminal failure. preserve the
109
// existing state and return the response.
110
} else {
111
p.CurState = poller.StatusFailed
0 commit comments