-
Notifications
You must be signed in to change notification settings - Fork 855
Fix HTTP/2 stream (transaction) inactivity timeout #13130
New issue
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -975,7 +975,6 @@ void | |
| Http2Stream::send_body(bool /* call_update ATS_UNUSED */) | ||
| { | ||
| Http2ConnectionState &connection_state = this->get_connection_state(); | ||
| _timeout.update_inactivity(); | ||
|
|
||
| reentrancy_count++; | ||
|
Comment on lines
975
to
979
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change alters how HTTP/2 stream inactivity is tracked under flow-control / write-blocked conditions (e.g.,
NO_WINDOW). I couldn't find existing gold tests that exercise theNO_WINDOWpath (no references intests/), so it would be good to add a regression test that stalls an HTTP/2 stream via flow control and assertstransaction_no_activity_timeout_infires (and also that real outbound DATA resets the timer).