aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Diagnostics/CommonProcess.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-29 19:30:52 +0100
committerBond_009 <bond.009@outlook.com>2019-02-02 15:56:54 +0100
commit66eabcdd3906cb04dfc60767dea8328267a6f134 (patch)
tree39ccc422a0e9b0fddae818cdc5aa545795778b10 /Emby.Server.Implementations/Diagnostics/CommonProcess.cs
parent34da7de47d5a217733f5a4d3a7116ef168327cb0 (diff)
Minor changes to encoding code
* Don't wait in intervals of 100ms for the file to exist
Diffstat (limited to 'Emby.Server.Implementations/Diagnostics/CommonProcess.cs')
-rw-r--r--Emby.Server.Implementations/Diagnostics/CommonProcess.cs2
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.