I'm getting :request_timeout in HTTP/2 but shouldn't it just be :timeout so it conforms to HTTP/1 connections?
The problem is that Req just looks for :timeout for transient errors. This could be handled in Req, but I think it makes more sense to conform these so it just has the same :timeout reason. Is there a good reason to use :request_timeout?
I switched from HTTP/1 to HTTP/2 and things started failing due to timeouts not being caught.
I'm getting
:request_timeoutin HTTP/2 but shouldn't it just be:timeoutso it conforms to HTTP/1 connections?The problem is that Req just looks for
:timeoutfor transient errors. This could be handled in Req, but I think it makes more sense to conform these so it just has the same:timeoutreason. Is there a good reason to use:request_timeout?I switched from HTTP/1 to HTTP/2 and things started failing due to timeouts not being caught.