Skip to content

Commit 989831b

Browse files
committed
PR feedback
1 parent 79b01b9 commit 989831b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.Data/Transforms/RowShufflingTransformer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ private async Task LoopProducerWorker()
591591
try
592592
{
593593
int circularIndex = 0;
594-
while (await _toProduce.OutputAvailableAsync())
594+
while (await _toProduce.OutputAvailableAsync().ConfigureAwait(false))
595595
{
596596
int requested;
597597
if (!_toProduce.TryReceive(out requested))

0 commit comments

Comments
 (0)