Use correct TaskCompletionSource ctor (#2261)

https://github.com/dotnet/corefx/issues/29664
This commit is contained in:
Stephen Halter 2018-05-13 19:52:19 -07:00 committed by David Fowler
parent 9acc2ee2cc
commit ffc665ccc2
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ namespace Microsoft.AspNetCore.SignalR.Redis.Internal
public AckInfo()
{
Created = DateTime.UtcNow;
Tcs = new TaskCompletionSource<object>(TaskContinuationOptions.RunContinuationsAsynchronously);
Tcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
}
}
}