This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
envoy: wait indefinitely on TLS secrets
When configuring transport sockets for clusters and listeners, it is possible for the SDS secret fetch to timeout (defaults to 15s). This timeout poses problems because after timeout, the secret is never fetched, leaving the proxy with broken TLS connections. This breaks the eventual consistency model. The side effect of using a timeout is that clusters and listeners that are warming become active after the timeout, leading to connection resets and rejections. This change makes the proxy indefinitely wait till it can retrieve the SDS secrets referenced in the transport socket configurations of clusters and listeners. Potentially addresses #2749 Signed-off-by: Shashank Ram <shashr2204@gmail.com>
- Loading branch information
1 parent
f1ab537
commit 34d0046
Showing
2 changed files
with
69 additions
and
18 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