Merge pull request #2378 from Sridhar-MS/kestrel-fix

Increasing timeout to check Kestrel Server is up.
This commit is contained in:
Sridhar Periyasamy 2016-04-08 14:30:08 -07:00
commit 3af38bf0fe

View file

@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
public class NetworkHelper
{
// in milliseconds
private const int Timeout = 20000;
private const int Timeout = 50000;
public static string Localhost { get; } = "http://localhost";