Skip to content

Commit e71dd98

Browse files
committed
disable tls resume for kestrel
1 parent 6791d8f commit e71dd98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarksApps/TLS/Kestrel/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void ConfigureListen(KestrelServerOptions serverOptions, IConfigurationRoot conf
6060
// forcefully disable TLS resumption
6161
options.OnAuthenticate = (connectionContext, sslServerAuthOptions) =>
6262
{
63-
// sslServerAuthOptions.AllowTlsResume = false;
63+
sslServerAuthOptions.AllowTlsResume = false;
6464
};
6565

6666
if (mTlsEnabled)

0 commit comments

Comments
 (0)