Skip to content

Commit 262dedf

Browse files
committed
Experiment: RevocationResponder to handle request asynchronously
1 parent bfb8cb1 commit 262dedf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libraries/Common/tests/System/Security/Cryptography/X509Certificates/RevocationResponder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ private void HandleRequests()
8080
{
8181
while (state._listener.IsListening)
8282
{
83-
state.HandleRequest();
83+
// fire and forget
84+
_ = state.HandleRequestAsync();
8485
}
8586
},
8687
this,

0 commit comments

Comments
 (0)