update startup error handling
This commit is contained in:
parent
3b4975323c
commit
6647ff335f
|
@ -244,7 +244,9 @@ namespace MediaBrowser.ServerApplication
|
|||
|
||||
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user