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
Things work correctly if the browser issues requests like these:
CONNECT thehost:9000 GET thehost:9000/resource_on_the_host
However, if the browser issues requests like these, the 2nd get will result in an attempt to open a new connection:
CONNECT thehost:9000 GET /resource_on_the_host
The text was updated successfully, but these errors were encountered:
#90 Reusing existing server connection for subsequent requests after …
05bbd8f
…a CONNECT
#90 Reverted unnecessary change
870df4e
This was a false alarm - the branch in which we look up a connection only happens for the first HttpRequest, which doesn't apply when we're tunneling.
Sorry, something went wrong.
Merge pull request adamfisk#90 from mrog/dependabot/maven/org.apache.…
e1bae73
…logging.log4j-log4j-core-2.15.0 Bump log4j-core from 2.14.0 to 2.15.0
No branches or pull requests
Things work correctly if the browser issues requests like these:
CONNECT thehost:9000
GET thehost:9000/resource_on_the_host
However, if the browser issues requests like these, the 2nd get will result in an attempt to open a new connection:
CONNECT thehost:9000
GET /resource_on_the_host
The text was updated successfully, but these errors were encountered: