Publish ApplicationStartingEvent during startup

This commit is contained in:
Mark McDowall 2022-11-20 19:09:29 -08:00
parent 237e7556c2
commit 5400bce129
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,8 @@ using NzbDrone.Common.Serializer;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Instrumentation;
using NzbDrone.Core.Lifecycle;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Host;
using NzbDrone.Host.AccessControl;
using NzbDrone.Http.Authentication;
@ -202,6 +204,7 @@ namespace NzbDrone.Host
IConfigFileProvider configFileProvider,
IRuntimeInfo runtimeInfo,
IFirewallAdapter firewallAdapter,
IEventAggregator eventAggregator,
SonarrErrorPipeline errorHandler)
{
initializeLogger.Initialize();
@ -223,6 +226,8 @@ namespace NzbDrone.Host
Console.CancelKeyPress += (sender, eventArgs) => NLog.LogManager.Configuration = null;
}
eventAggregator.PublishEvent(new ApplicationStartingEvent());
if (OsInfo.IsWindows && runtimeInfo.IsAdmin)
{
firewallAdapter.MakeAccessible();