()
| 289 | } |
| 290 | |
| 291 | func (c *genericCombiner[R]) ShouldQuit() bool { |
| 292 | c.mu.Lock() |
| 293 | defer c.mu.Unlock() |
| 294 | |
| 295 | return c.shouldQuit() |
| 296 | } |
| 297 | |
| 298 | func (c *genericCombiner[R]) shouldQuit() bool { |
| 299 | if c.httpStatusCode/100 == 5 { // Bail on 5xx |
nothing calls this directly
no test coverage detected