Skip to content

Commit ff6e92a

Browse files
Restore configureAwait false
1 parent bdefb3c commit ff6e92a

File tree

1 file changed

+1
-1
lines changed
  • Ix.NET/Source/System.Linq.Async/System/Linq/Operators

1 file changed

+1
-1
lines changed

Ix.NET/Source/System.Linq.Async/System/Linq/Operators/SkipLast.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static async IAsyncEnumerable<TSource> Core(IAsyncEnumerable<TSource> source, in
4747
{
4848
var q = new Queue<TSource>();
4949

50-
await foreach (var x in source.WithCancellation(cancellationToken))
50+
await foreach (var x in source.WithCancellation(cancellationToken).ConfigureAwait(false))
5151
{
5252
q.Enqueue(x);
5353

0 commit comments

Comments
 (0)