fix(historian-client): cancellable TLS client handshake + default-fields test (review)

This commit is contained in:
Joseph Doherty
2026-06-12 12:13:04 -04:00
parent d4ecc9138f
commit fcf84adbad
2 changed files with 3 additions and 1 deletions
@@ -68,7 +68,7 @@ internal sealed class FrameChannel : IAsyncDisposable
});
try
{
await ssl.AuthenticateAsClientAsync(opts.Host).ConfigureAwait(false);
await ssl.AuthenticateAsClientAsync(new SslClientAuthenticationOptions { TargetHost = opts.Host }, ct).ConfigureAwait(false);
}
catch
{