mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Log cert issues at debug (need to deal with self signed certs)
This commit is contained in:
parent
17d4b54561
commit
7d96d4d644
@ -15,7 +15,7 @@ public static void Register()
|
|||||||
ServicePointManager.ServerCertificateValidationCallback = ShouldByPassValidationError;
|
ServicePointManager.ServerCertificateValidationCallback = ShouldByPassValidationError;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool ShouldByPassValidationError(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslpolicyerrors)
|
private static bool ShouldByPassValidationError(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
|
||||||
{
|
{
|
||||||
var request = sender as HttpWebRequest;
|
var request = sender as HttpWebRequest;
|
||||||
|
|
||||||
@ -24,12 +24,12 @@ private static bool ShouldByPassValidationError(object sender, X509Certificate c
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sslpolicyerrors == SslPolicyErrors.None)
|
if (sslPolicyErrors == SslPolicyErrors.None)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger.Error("Request for {0} failed certificated validation. {1}", request.Address, sslpolicyerrors);
|
Logger.Debug("Certificate validation for {0} failed. {1}", request.Address, sslPolicyErrors);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user