Use correct TaskCompletionSource ctor (#2261)
https://github.com/dotnet/corefx/issues/29664
This commit is contained in:
parent
9acc2ee2cc
commit
ffc665ccc2
|
|
@ -91,7 +91,7 @@ namespace Microsoft.AspNetCore.SignalR.Redis.Internal
|
||||||
public AckInfo()
|
public AckInfo()
|
||||||
{
|
{
|
||||||
Created = DateTime.UtcNow;
|
Created = DateTime.UtcNow;
|
||||||
Tcs = new TaskCompletionSource<object>(TaskContinuationOptions.RunContinuationsAsynchronously);
|
Tcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue