Merge pull request #1892 from MediaBrowser/dev

update entry point runner
This commit is contained in:
Luke 2016-06-29 18:08:38 -04:00 committed by GitHub
commit 07ef2479eb

View File

@ -330,18 +330,21 @@ namespace MediaBrowser.Server.Startup.Common
HttpServer.GlobalResponse = null;
PerformPostInitMigrations();
Logger.Info("Post-init migrations complete");
Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint =>
foreach (var entryPoint in GetExports<IServerEntryPoint>().ToList())
{
var name = entryPoint.GetType().FullName;
try
{
entryPoint.Run();
}
catch (Exception ex)
{
Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().FullName);
Logger.ErrorException("Error in {0}", ex, name);
}
});
}
Logger.Info("Entry points complete");
LogManager.RemoveConsoleOutput();
}