1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

fixed NzbDrone using 100% cpu when console not available.

This commit is contained in:
Keivan Beigi
2013-08-20 15:12:35 -07:00
parent e377e02db4
commit 75a46a3abe
9 changed files with 39 additions and 31 deletions
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.IO;
using NLog;
using NzbDrone.Common;
@@ -73,7 +72,7 @@ namespace NzbDrone.Update.UpdateEngine
_logger.Info("Starting {0}", fileName);
var path = Path.Combine(installationFolder, fileName);
_processProvider.Start(path, StartupArguments.NO_BROWSER);
_processProvider.SpawnNewProcess(path, StartupArguments.NO_BROWSER);
}
}
}