Feature Description
Improve code clarity and correctness by replacing the broad status >= 100 check with http.StatusContinue and an explicit 199 upper bound to clearly target the 1xx informational range, where HTTP disallows response bodies. This removes magic numbers, expresses intent, and makes status comparisons easier to understand and maintain.
Feature Description
Improve code clarity and correctness by replacing the broad status >= 100 check with http.StatusContinue and an explicit 199 upper bound to clearly target the 1xx informational range, where HTTP disallows response bodies. This removes magic numbers, expresses intent, and makes status comparisons easier to understand and maintain.