We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think it's a bug in httpuv. Come up with a workaround and report it if so.
The text was updated successfully, but these errors were encountered:
https://github.com/trestletech/rapier/blob/master/R/rapier.R#L185-L187
Sorry, something went wrong.
rstudio/httpuv#49
4901c5e
With a simple httpuv listener, setting the HTTP_CONNECTION to "close" did the trick. By default the connection is set to "Keep-Alive".
req$HTTP_CONNECTION <- 'close'
Is there plans to fix this issue in future?
We "solved" this using the same approach you suggested above in https://github.com/trestletech/plumber/blob/f292ef032aa58ae2871edbd9be60e720698dc5b8/R/response.R#L25-L27 which is how I closed the ticket.
But the underlying issue in httpuv is still open and is being tracked here: rstudio/httpuv#49
No branches or pull requests
I think it's a bug in httpuv. Come up with a workaround and report it if so.
The text was updated successfully, but these errors were encountered: