diff --git a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs index 1423b77ec14e..a6aba0228722 100644 --- a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs +++ b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs @@ -513,7 +513,7 @@ internal static SslServerAuthenticationOptions CreateHttp3Options(HttpsConnectio var sslServerAuthenticationOptions = new SslServerAuthenticationOptions { ServerCertificate = httpsOptions.ServerCertificate, - ApplicationProtocols = new List() { SslApplicationProtocol.Http3, new SslApplicationProtocol("h3-29") }, + ApplicationProtocols = new List() { SslApplicationProtocol.Http3 }, CertificateRevocationCheckMode = httpsOptions.CheckCertificateRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck, };