Use Status.is_redirection instead of matching on the polymorphic variant

The reason behind this is that the new HTTP code 308 (permanent redirect)
is not recognized by HTTP/AF, but already used (e.g. by alt-ergo.ocamlpro.com).
This commit is contained in:
Hannes Mehnert 2022-09-01 09:27:03 +02:00
parent 86c961f5cf
commit c16f2288ed

View file

@ -327,12 +327,13 @@ let one_request
else
single_request ~ctx ~alpn_protocol ?config tls_config ~meth ~headers ?body uri
>>? fun (resp, body) ->
match resp.status with
| #Status.redirection ->
if Status.is_redirection resp.status then
( match Headers.get resp.headers "location" with
| Some location ->
Lwt.return (resolve_location ~uri ~location) >>? fun uri ->
follow_redirect (pred count) uri
| None -> Lwt.return_ok (resp, body) )
| _ -> Lwt.return_ok (resp, body) in
| None ->
Lwt.return_ok (resp, body) )
else
Lwt.return_ok (resp, body) in
follow_redirect max_redirect uri