diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-02-02 19:04:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-02 19:04:10 -0500 |
| commit | 32f393d57fd634ed9771078b5fbf87d4466a927c (patch) | |
| tree | 522825aab3eb32cf3707d158463d26959d76a6a9 /Emby.Server.Implementations/Diagnostics/CommonProcess.cs | |
| parent | 42d5a48491904ae4251e32c17da037a1a5ba77eb (diff) | |
| parent | 1cdcace0618658d1e99e98c3f539baf3ae72ab14 (diff) | |
Merge pull request #764 from Bond-009/encoding
Remove dead code, made some functions properly async
Diffstat (limited to 'Emby.Server.Implementations/Diagnostics/CommonProcess.cs')
| -rw-r--r-- | Emby.Server.Implementations/Diagnostics/CommonProcess.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Diagnostics/CommonProcess.cs b/Emby.Server.Implementations/Diagnostics/CommonProcess.cs index 55539eafc..78b22bda3 100644 --- a/Emby.Server.Implementations/Diagnostics/CommonProcess.cs +++ b/Emby.Server.Implementations/Diagnostics/CommonProcess.cs @@ -105,7 +105,7 @@ namespace Emby.Server.Implementations.Diagnostics { return _process.WaitForExit(timeMs); } - + public Task<bool> WaitForExitAsync(int timeMs) { //Note: For this function to work correctly, the option EnableRisingEvents needs to be set to true. |
