We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6c7c01 commit 46562b1Copy full SHA for 46562b1
src/Servers/Kestrel/samples/http2cat/Program.cs
@@ -28,7 +28,8 @@ public static async Task Main(string[] args)
28
29
internal static async Task RunTestCase(Http2Utilities h2Connection)
30
{
31
- await h2Connection.InitializeConnectionAsync();
+ // Kestrel sends a fourth setting, SETTINGS_ENABLE_CONNECT_PROTOCOL
32
+ await h2Connection.InitializeConnectionAsync(expectedSettingsCount: 4);
33
34
h2Connection.Logger.LogInformation("Initialized http2 connection. Starting stream 1.");
35
0 commit comments