SPARK-1789 changed Accept All Certificates to disabled by default

This commit is contained in:
wroot
2016-10-13 16:38:40 +03:00
parent 2488042bbe
commit 56eebcef53

View File

@ -1159,7 +1159,7 @@ public class LocalPreferences {
}
public boolean isAcceptAllCertificates() {
return getBoolean("AcceptAllCertificates", true);
return getBoolean("AcceptAllCertificates", false);
}
public void setDisableHostnameVerification(boolean accept) {