remove unused code

This commit is contained in:
vishesh92 2026-03-24 16:04:02 +05:30
parent 545ddbbe39
commit a8655b3c23
No known key found for this signature in database
GPG Key ID: 4E395186CBFA790B
2 changed files with 0 additions and 8 deletions

View File

@ -120,8 +120,3 @@ UPDATE `cloud`.`configuration`
SET value = NULL
WHERE name IN ('consoleproxy.url.domain', 'secstorage.ssl.cert.domain')
AND value IN ('realhostip.com', '*.realhostip.com');
UPDATE `cloud`.`configuration`
SET value = NULL
WHERE name = 'secstorage.secure.copy.cert'
AND value LIKE '%realhostip%';

View File

@ -222,9 +222,6 @@ public class ConfigurationServerImpl extends ManagerBase implements Configuratio
_configDao.update(Config.SecStorageEncryptCopy.key(), Config.SecStorageEncryptCopy.getCategory(), "false");
logger.debug("ConfigurationServer made secondary storage copy encrypt set to false.");
_configDao.update("secstorage.secure.copy.cert", "");
logger.debug("ConfigurationServer cleared legacy secstorage.secure.copy.cert.");
_configDao.update("user.password.encoders.exclude", "MD5,LDAP,PLAINTEXT");
logger.debug("Configuration server excluded insecure encoders");