File tree 1 file changed +1
-2
lines changed
src/SignalR/common/Http.Connections/test
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -1772,12 +1772,11 @@ public async Task LongPollingCanPollIfWritePipeHasBackpressure()
1772
1772
}
1773
1773
1774
1774
[ Fact ]
1775
- [ Flaky ( "https://github.com/aspnet/AspNetCore-Internal/issues/1975" , FlakyOn . All ) ]
1776
1775
public async Task ErrorDuringPollWillCloseConnection ( )
1777
1776
{
1778
1777
bool ExpectedErrors ( WriteContext writeContext )
1779
1778
{
1780
- return ( writeContext . LoggerName == typeof ( LongPollingServerTransport ) . FullName &&
1779
+ return ( writeContext . LoggerName . Equals ( "Microsoft.AspNetCore.Http.Connections.Internal.Transports.LongPollingTransport" ) &&
1781
1780
writeContext . EventId . Name == "LongPollingTerminated" ) ||
1782
1781
( writeContext . LoggerName == typeof ( HttpConnectionManager ) . FullName &&
1783
1782
writeContext . EventId . Name == "FailedDispose" ) ;
You can’t perform that action at this time.
0 commit comments