Uh oh!
There was an error while loading. Please reload this page.
Stop if process_request/response aborts the opening handshake. - #1500
Merged
Conversation
aaugustin
commented
Sep 10, 2024
MemberAuthor
Needs a changelog and perhaps tests. |
aaugustin
commented
Sep 10, 2024
MemberAuthor
Needs tests for sure because a new code path isn't covered. |
aaugustinforce-pushed
the
stop-if-connection-is-not-open
branch
4 times, most recently
from
September 11, 2024 05:33
51fb596 to
1c82b64CompareWhen process_request() or process_response() returned a HTTP response without calling accept() or reject() and with a status code other than 101, the connection handler used to start, which was incorrect. Fix#1419. Also move start_keepalive() outside of handshake() and bring it together with starting the connection handler, which is more logical.
aaugustinforce-pushed
the
stop-if-connection-is-not-open
branch
from
September 11, 2024 19:55
1c82b64 to
98f236fCompare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix#1419.