Skip to content

Commit

Permalink
Disable HTTP/3 LargeSingleHeader_ThrowsException Test Again (#100956)
Browse files Browse the repository at this point in the history
  • Loading branch information
liveans authored Apr 12, 2024
1 parent 7b534da commit a70b9a1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
[InlineData(15)]
public async Task LargeSingleHeader_ThrowsException(int maxResponseHeadersLength)
{
if (UseVersion == HttpVersion30)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/94507")]
return;
}

using HttpClientHandler handler = CreateHttpClientHandler();
handler.MaxResponseHeadersLength = maxResponseHeadersLength;

Expand Down

0 comments on commit a70b9a1

Please sign in to comment.