Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ public ValueTask WaitForCompletionAsync(int executionBranchId)
{
AssertNotPooled();

return _activeBranches.TryGetValue(executionBranchId, out var branch)
? branch.WaitForCompletionAsync(operationContext.RequestAborted)
Branch? branch;

lock (_sync)
{
_activeBranches.TryGetValue(executionBranchId, out branch);
}

return branch is not null
? branch.WaitForCompletionAsync(_ct)
: ValueTask.CompletedTask;
}

Expand Down
Loading