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:
parent
86c961f5cf
commit
c16f2288ed
1 changed files with 6 additions and 5 deletions
|
@ -327,12 +327,13 @@ let one_request
|
||||||
else
|
else
|
||||||
single_request ~ctx ~alpn_protocol ?config tls_config ~meth ~headers ?body uri
|
single_request ~ctx ~alpn_protocol ?config tls_config ~meth ~headers ?body uri
|
||||||
>>? fun (resp, body) ->
|
>>? fun (resp, body) ->
|
||||||
match resp.status with
|
if Status.is_redirection resp.status then
|
||||||
| #Status.redirection ->
|
|
||||||
( match Headers.get resp.headers "location" with
|
( match Headers.get resp.headers "location" with
|
||||||
| Some location ->
|
| Some location ->
|
||||||
Lwt.return (resolve_location ~uri ~location) >>? fun uri ->
|
Lwt.return (resolve_location ~uri ~location) >>? fun uri ->
|
||||||
follow_redirect (pred count) uri
|
follow_redirect (pred count) uri
|
||||||
| None -> Lwt.return_ok (resp, body) )
|
| None ->
|
||||||
| _ -> Lwt.return_ok (resp, body) in
|
Lwt.return_ok (resp, body) )
|
||||||
|
else
|
||||||
|
Lwt.return_ok (resp, body) in
|
||||||
follow_redirect max_redirect uri
|
follow_redirect max_redirect uri
|
||||||
|
|
Loading…
Reference in a new issue