- Notifications
You must be signed in to change notification settings - Fork4
feat: automatic mTLS certificate regeneration and retry mechanism#224
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This adds support for automatically recovering from SSL handshake errors when certificates expired.When an SSL error occurs, the plugin will now attempt to execute a configured external commandto refresh certificates. If successful, the SSL context is reloaded and the failed request istransparently retried. This improves reliability in environments with short-lived or frequentlyrotating certificates.Netflix requested this, they don't have a reliable mechanism to detect and refresh the certificatesbefore any major disruption in Coder Toolbox.
code-asher left a comment
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.
Neat! Do you know if we have plans to do this for the VS Code extension as well?
fioan89 commentedDec 1, 2025
Yes.. it should be and I talked with@jcjiang to implement this on VS Code but I'm not sure when it will be. Netflix was apparently keen to have this in Toolbox. |
912237d intomainUh oh!
There was an error while loading.Please reload this page.
This adds support for automatically recovering from SSL handshake errors when certificates expired. When an SSL error occurs, the plugin will now attempt to execute a configured external command to refresh certificates. If successful, the SSL context is reloaded and the failed request is transparently retried. This improves reliability in environments with short-lived or frequently rotating certificates.
Netflix requested this, they don't have a reliable mechanism to detect and refresh the certificates before any major disruption in Coder Toolbox.