Skip to content
Closed
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 @@ -562,8 +562,7 @@ public async IAsyncEnumerable<ProcessOutputLine> ReadAllLinesAsync([EnumeratorCa

// Ensure both tasks complete before disposing the CancellationTokenSource.
// The tasks handle all exceptions internally, so they always run to completion.
await outputTask.ConfigureAwait(false);
await errorTask.ConfigureAwait(false);
await Task.WhenAll(outputTask, errorTask).ConfigureAwait(false);

linkedCts.Dispose();
}
Expand Down
Loading