-
Notifications
You must be signed in to change notification settings - Fork 369
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
Support StreamIdleTimeout #4350
base: main
Are you sure you want to change the base?
Conversation
please ref the doc: https://gateway.envoyproxy.io/contributions/contributing/#submitting-a-pr and fix your DCO. thanks |
This pull request has been automatically marked as stale because it has not had activity in the last 30 days. Please feel free to give a status update now, ping for review, when it's ready. Thank you for your contributions! |
// The stream idle timeout for connections managed by the connection manager. | ||
// If not specified, this defaults to 5 minutes. The default value was selected | ||
// so as not to interfere with any smaller configured timeouts that may have | ||
// existed in configurations prior to the introduction of this feature, while | ||
// introducing robustness to TCP connections that terminate without a FIN. |
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.
// The stream idle timeout for connections managed by the connection manager. | |
// If not specified, this defaults to 5 minutes. The default value was selected | |
// so as not to interfere with any smaller configured timeouts that may have | |
// existed in configurations prior to the introduction of this feature, while | |
// introducing robustness to TCP connections that terminate without a FIN. | |
// The stream idle timeout defines the amount of time a stream can exist without any upstream or downstream activity. | |
// If not specified, this defaults to 5 minutes. |
can you also sign your commit and force push |
What type of PR is this?
feat(translator):Support StreamIdleTimeout
What this PR does / why we need it:
Support StreamIdleTimeout
Which issue(s) this PR fixes:
Fixes #4349