commit
29a87adc14
|
@ -252,15 +252,7 @@ namespace MediaBrowser.Common.Implementations
|
||||||
var innerProgress = new ActionableProgress<double>();
|
var innerProgress = new ActionableProgress<double>();
|
||||||
innerProgress.RegisterAction(p => progress.Report(.8 * p + 15));
|
innerProgress.RegisterAction(p => progress.Report(.8 * p + 15));
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await RegisterResources(innerProgress).ConfigureAwait(false);
|
await RegisterResources(innerProgress).ConfigureAwait(false);
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.ErrorException("Error in RegisterResource", ex);
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
|
|
||||||
FindParts();
|
FindParts();
|
||||||
progress.Report(95);
|
progress.Report(95);
|
||||||
|
|
|
@ -244,7 +244,9 @@ namespace MediaBrowser.ServerApplication
|
||||||
|
|
||||||
|
|
||||||
var task = _appHost.Init(initProgress);
|
var task = _appHost.Init(initProgress);
|
||||||
task = task.ContinueWith(new Action<Task>(a => _appHost.RunStartupTasks()));
|
Task.WaitAll(task);
|
||||||
|
|
||||||
|
task = task.ContinueWith(new Action<Task>(a => _appHost.RunStartupTasks()), TaskContinuationOptions.OnlyOnRanToCompletion | TaskContinuationOptions.AttachedToParent);
|
||||||
|
|
||||||
if (runService)
|
if (runService)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user