Add missing call to ConfigureAwait()
This commit is contained in:
parent
e0f40f57d8
commit
4efdc63337
|
@ -20,7 +20,7 @@ namespace MediaBrowser.Common.Extensions
|
||||||
{
|
{
|
||||||
using (var cancelTokenSource = new CancellationTokenSource(timeout))
|
using (var cancelTokenSource = new CancellationTokenSource(timeout))
|
||||||
{
|
{
|
||||||
return await WaitForExitAsync(process, cancelTokenSource.Token);
|
return await WaitForExitAsync(process, cancelTokenSource.Token).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user