Increase retry count
This commit is contained in:
parent
4b9a3fcc05
commit
06dbdf5ced
|
|
@ -107,7 +107,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
|||
[Theory]
|
||||
[RetryTest(nameof(LargeUploadRetryPredicate),
|
||||
"Active investigation into potential corefx sockets bug: https://github.com/dotnet/corefx/issues/30691",
|
||||
OperatingSystems.Windows)]
|
||||
OperatingSystems.Windows,
|
||||
5)]
|
||||
[MemberData(nameof(LargeUploadData))]
|
||||
public async Task LargeUpload(long? maxRequestBufferSize, bool connectionAdapter, bool expectPause)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -809,7 +809,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
|||
[Fact]
|
||||
[RetryTest(nameof(ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeadersRetryPredicate),
|
||||
"Active investigation into potential corefx sockets bug: https://github.com/dotnet/corefx/issues/30691",
|
||||
OperatingSystems.Windows)]
|
||||
OperatingSystems.Windows,
|
||||
5)]
|
||||
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
|
||||
{
|
||||
var headerSize = 1024 * 1024; // 1 MB for each header value
|
||||
|
|
|
|||
Loading…
Reference in New Issue