Skip to content

Commit

Permalink
Issue: The vstest.console was waiting for 80 minut if there is some c…
Browse files Browse the repository at this point in the history
…onnection problem in test host and vstest which is very large time. (microsoft#174)

Fix: Reduced it to one min
  • Loading branch information
Faizan2304 authored Nov 2, 2016
1 parent 8b697d9 commit 5ccbca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.TestPlatform.CrossPlatEngine/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public class Constants
/// <summary>
/// The connection timeout for clients in milliseconds.
/// </summary>
internal const int ClientConnectionTimeout = 5000 * 1000;
internal const int ClientConnectionTimeout = 60 * 1000;
}
}

0 comments on commit 5ccbca0

Please sign in to comment.