mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed: Re-enabled monitoring provider.
This commit is contained in:
parent
36378522e4
commit
057e248f8f
2 changed files with 7 additions and 12 deletions
|
@ -82,13 +82,7 @@ namespace NzbDrone.Providers
|
|||
|
||||
try
|
||||
{
|
||||
ICredentials identity = null;
|
||||
|
||||
if (_configFileProvider.AuthenticationType == AuthenticationType.Windows)
|
||||
{
|
||||
identity = CredentialCache.DefaultCredentials;
|
||||
}
|
||||
|
||||
ICredentials identity = CredentialCache.DefaultCredentials;
|
||||
_httpProvider.DownloadString(_iisProvider.AppUrl, identity); //This should preload the home page, making the first load faster.
|
||||
string response = _httpProvider.DownloadString(_iisProvider.AppUrl + "/health", identity);
|
||||
|
||||
|
@ -107,11 +101,11 @@ namespace NzbDrone.Providers
|
|||
catch (Exception ex)
|
||||
{
|
||||
_pingFailCounter++;
|
||||
logger.ErrorException("Application pool is not responding. Count " + _pingFailCounter, ex);
|
||||
if (_pingFailCounter > 4)
|
||||
logger.Error("Application pool is not responding. Count " + _pingFailCounter + ex.Message);
|
||||
if (_pingFailCounter > 10)
|
||||
{
|
||||
_pingFailCounter = 0;
|
||||
//_iisProvider.RestartServer();
|
||||
_iisProvider.RestartServer();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue