Dispose the ACME client and signer when context creation fails - #1222
Merged
Conversation
CreateClientCoreAsync built an AcmeClient, which owns an HttpClient, before fetching the directory and creating the account. The context is only assigned to the cached field on success, so any failure in between left the client and its signer unreachable and undisposed. Against a persistently failing ACME endpoint this accumulated one HttpClient per retry for the life of the worker. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Improves reliability of AcmeClientFactory.CreateClientCoreAsync by ensuring resources created during client-context construction are disposed when context creation fails, preventing repeated HttpClient/handler leaks on persistent failures.
Changes:
- Wrap ACME client context construction in
try/catchto dispose theAcmeClientand signer when intermediate steps fail. - Make the
AcmeClientlocal nullable to cover exceptions thrown during the client constructor.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
AcmeClientFactory.CreateClientCoreAsyncconstructs anAcmeClient— which owns anHttpClientand its handler — and only afterwards fetches the directory and creates or loads the account. The result is assigned to the cached field via_clientContext ??= await CreateClientCoreAsync(), so it is only reachable on success.Any failure in between leaves the client and the signer unreachable and undisposed:
PreconditionExceptionthrown when the endpoint requires EAB and none is configuredBecause
CreateClientAsyncis called from every activity, a persistently failing ACME endpoint accumulates oneHttpClientand oneSocketsHttpHandlerper attempt for the lifetime of the worker.Change
Wrap the construction in
try/catchand dispose both the client and the signer on the failure path.AcmeClientContext.Dispose()disposes both, so the failure path is symmetric with the success path. The client is declared nullable so a throw from theAcmeClientconstructor itself is covered too.🤖 Generated with Claude Code