-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(outbound)!: Remove HTTP route timeouts
In prepration to instrument timeouts in the endpoint stack, this change removes the existing timeout enforcement in the HTTP router. This parameter could only be configured with the older policy.linkerd.io resources (and not the gateway.networking.k8s.io resources). This timeout that is removed has a few problems: 1. It does not implement the proper 'request timeout' semantics, as described by the Gateway API spec. Instead, it enforces a timeout on on the response headers. There is no bounds on the lifetime of a response stream, for instance. 2. These errors are difficult to observe because they manifest as cancelations. A follow-up change will replacae this with route configuration that enables endpoint-level HTTP errors.
- Loading branch information
Showing
6 changed files
with
3 additions
and
106 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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