|
|
|
@ -10,6 +10,7 @@ namespace NzbDrone.Host
|
|
|
|
|
{
|
|
|
|
|
void PreventStartIfAlreadyRunning();
|
|
|
|
|
void KillAllOtherInstance();
|
|
|
|
|
void WarnIfAlreadyRunning();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SingleInstancePolicy : ISingleInstancePolicy
|
|
|
|
@ -45,6 +46,14 @@ namespace NzbDrone.Host
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WarnIfAlreadyRunning()
|
|
|
|
|
{
|
|
|
|
|
if (IsAlreadyRunning())
|
|
|
|
|
{
|
|
|
|
|
_logger.Debug("Another instance of Sonarr is already running.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsAlreadyRunning()
|
|
|
|
|
{
|
|
|
|
|
return GetOtherNzbDroneProcessIds().Any();
|
|
|
|
@ -76,4 +85,4 @@ namespace NzbDrone.Host
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|