Handle informational (1xx) responses similarly to how we handle redirects.
I tested this manually by fetching a Medium URL (https://pancy.medium.com/first-step-building-ocaml-with-dune-3661ee646cbb) that happens to return a 103 response (not 100% of the time, but usually, it seems). Without this fix, the code field in the response was 103, but with the fix it was 200.
Handle informational (1xx) responses similarly to how we handle redirects.
I tested this manually by fetching a Medium URL (https://pancy.medium.com/first-step-building-ocaml-with-dune-3661ee646cbb) that happens to return a 103 response (not 100% of the time, but usually, it seems). Without this fix, the
code
field in the response was103
, but with the fix it was200
.