Skip to content

Commit a1424ab

Browse files
committed
review
1 parent c4382aa commit a1424ab

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/BenchmarksApps/TLS/HttpSys/NetSh/SslCertBinding.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
{
33
public class SslCertBinding
44
{
5-
public string CertificateThumbprint { get; set; }
5+
public string? CertificateThumbprint { get; set; }
66

7-
public string ApplicationId { get; set; }
7+
public string? ApplicationId { get; set; }
88

99
/// <summary>
1010
/// if mutual TLS is enabled

src/BenchmarksApps/TLS/Kestrel/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
Console.WriteLine("Starting application...");
1414

1515
var builder = WebApplication.CreateBuilder(args);
16-
// builder.Logging.ClearProviders();
17-
builder.Logging.SetMinimumLevel(LogLevel.Debug).AddConsole();
16+
builder.Logging.ClearProviders();
1817

1918
// behavioral
2019
var mTlsEnabled = bool.TryParse(builder.Configuration["mTLS"], out var mTlsEnabledConfig) && mTlsEnabledConfig;

0 commit comments

Comments
 (0)