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
Hello, I'm doing 5 threads requesting data on a HTTP/2 connection.
The server often closes the connection and I have a handler to print when this happens. So I see in console this:
#<SocketError: Socket was remotely closed>
But then the outstanding requests are not interrupted. Rather they seem to stay until timeout occurs. So after awhile I see this in console:
#<NoMethodError: undefined method `body' for nil:NilClass> #<NoMethodError: undefined method `body' for nil:NilClass> #<NoMethodError: undefined method `body' for nil:NilClass>
i.e. from the 5 threads, 3 were stuck in the request. Nothing raised. Just response was nil instead of an actual response.
nil
So the issues are two:
connection.call(:get, ...)
The text was updated successfully, but these errors were encountered:
#47
Sorry, something went wrong.
No branches or pull requests
Hello, I'm doing 5 threads requesting data on a HTTP/2 connection.
The server often closes the connection and I have a handler to print when this happens. So I see in console this:
But then the outstanding requests are not interrupted. Rather they seem to stay until timeout occurs. So after awhile I see this in console:
i.e. from the 5 threads, 3 were stuck in the request. Nothing raised. Just response was
nil
instead of an actual response.So the issues are two:
connection.call(:get, ...)
The text was updated successfully, but these errors were encountered: