Reset the request stream tcs after prev complete

This commit is contained in:
redth 2022-09-07 19:56:30 -04:00
Родитель 63eeac7858
Коммит 7f2a2f56d7
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -152,6 +152,8 @@ namespace Microsoft.Maui.Automation.Remote
tcs.TrySetResult(requestStream.Current);
}
}
tcsRequestStream = new TaskCompletionSource<IAsyncStreamWriter<TRequest>>();
}
}
}