You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes a broken [QuarantinedTest] attribute reference left by a previous automated quarantine workflow run that failed to resolve placeholder issue URLs.
The patch file is available in the agent artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 23683129095 -n agent -D /tmp/agent-23683129095
# Create a new branch
git checkout -b fix/quarantine-url-fixes-7017261829be6f14
# Apply the patch (--3way handles cross-repo patches where files may already exist)
git am --3way /tmp/agent-23683129095/aw-fix-quarantine-url-fixes.patch
# Push the branch to origin
git push origin fix/quarantine-url-fixes-7017261829be6f14
# Create the pull request
gh pr create --title '[test-quarantine] Fix placeholder quarantine issue URL in Http2ConnectionTests' --base main --head fix/quarantine-url-fixes-7017261829be6f14 --repo DeagleGross/aspnetcore
Show patch (32 lines)
From be8ea010912dd5cbe4d952b7dacfe0870097df42 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com>
Date: Sat, 28 Mar 2026 10:43:25 +0000
Subject: [PATCH] Fix placeholder quarantine issue URLs
Replace placeholder issue references (#aw_wswrks1 and #aw_http2rhr) with
the actual GitHub issue numbers created by the previous quarantine workflow run:
- TestServerTests.WebSocketsWorks -> #65914- Http2ConnectionTests.RequestHeaderStringReuse_MultipleStreams_KnownHeaderReused -> #65915
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
.../test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs
index 9a05dd9ceb..0360cf8b57 100644
--- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs+++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs@@ -164,7 +164,7 @@ public class Http2ConnectionTests : Http2TestBase
}
[Fact]
- [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_http2rhr")]+ [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/65915")]
public async Task RequestHeaderStringReuse_MultipleStreams_KnownHeaderReused()
{
var requestHeaders = new[]
--
2.53.0
Fixes a broken
[QuarantinedTest]attribute reference left by a previous automated quarantine workflow run that failed to resolve placeholder issue URLs.Http2ConnectionTests.RequestHeaderStringReuse_MultipleStreams_KnownHeaderReused: placeholder#aw_http2rhr→ actual issue Quarantine Microsoft.AspNetCore.Server.Kestrel.Core.Tests.Http2ConnectionTests.RequestHeaderStringReuse_MultipleStreams_KnownHea [Content truncated due to length] dotnet/aspnetcore#65915Associated issue: dotnet#65915
Note
🔒 Integrity filter blocked 14 items
The following items were blocked because they don't meet the GitHub integrity level.
search_issues: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".search_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".search_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".search_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".search_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".list_pull_requests: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".pull_request_read: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".To allow these resources, lower
min-integrityin your GitHub frontmatter:Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available in the
agentartifact in the workflow run linked above.To create a pull request with the changes:
Show patch (32 lines)