Increase retry count (#1449)

This commit is contained in:
Justin Kotalik 2018-09-27 15:08:18 -07:00 committed by GitHub
parent bac0f44fa7
commit c6633e6ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
public static class Helpers
{
private static readonly TimeSpan RetryRequestDelay = TimeSpan.FromMilliseconds(100);
private static readonly int RetryRequestCount = 5;
private static readonly int RetryRequestCount = 10;
public static string GetTestWebSitePath(string name)
{