We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa5473c commit 74bf071Copy full SHA for 74bf071
src/IcedTasks/CancellableTaskBuilderBase.fs
@@ -738,7 +738,9 @@ module CancellableTaskBase =
738
member inline _.Source
739
([<InlineIfLambda>] coldTask: unit -> Task<'T>)
740
: CancellationToken -> Awaiter<TaskAwaiter<'T>, 'T> =
741
- (fun (ct: CancellationToken) -> Awaitable.GetTaskAwaiter(coldTask ()))
+ (fun (ct: CancellationToken) ->
742
+ Awaitable.GetTaskAwaiter(BindContext.SetIsBind coldTask ())
743
+ )
744
745
/// <summary>Allows the computation expression to turn other types into CancellationToken -> 'Awaiter</summary>
746
///
0 commit comments