bug 6972: fixing the ssl cert warning

status 6972: resolved fixed
This commit is contained in:
abhishek 2010-11-04 14:11:03 -07:00
parent 821dd88729
commit 52d2111ed3
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class DownloadMonitorImpl implements DownloadMonitor {
final Map<String, String> configs = _configDao.getConfiguration("ManagementServer", params);
_sslCopy = Boolean.parseBoolean(configs.get("secstorage.encrypt.copy"));
String cert = configs.get("secstorage.secure.copy.cert");
String cert = configs.get("secstorage.ssl.cert.domain");
if (!"realhostip.com".equalsIgnoreCase(cert)) {
s_logger.warn("Only realhostip.com ssl cert is supported, ignoring self-signed and other certs");
}