Up the SignalR test timeout to match Kestrel's (#8563)

This commit is contained in:
Mikael Mengistu 2019-04-03 16:36:40 -07:00 committed by GitHub
parent 102ba0c9c5
commit 722a34cd56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace System.Threading.Tasks
#endif
static class TaskExtensions
{
private const int DefaultTimeout = 5000;
private const int DefaultTimeout = 30 * 1000;
public static Task OrTimeout(this Task task, int milliseconds = DefaultTimeout, [CallerMemberName] string memberName = null, [CallerFilePath] string filePath = null, [CallerLineNumber] int? lineNumber = null)
{