Skip to content

Commit

Permalink
Remove redundant securitydomain.httpsagentport
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Nov 3, 2023
1 parent ad78ff8 commit aa8e690
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion base/server/python/pki/server/deployment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2573,7 +2573,6 @@ def setup_security_domain_manager(self, subsystem):
subsystem.config['securitydomain.host'] = self.mdict['pki_hostname']
subsystem.config['securitydomain.httpport'] = unsecurePort
subsystem.config['securitydomain.httpsadminport'] = securePort
subsystem.config['securitydomain.httpsagentport'] = securePort

def pki_connect(self):

Expand Down
1 change: 0 additions & 1 deletion base/server/python/pki/server/subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,6 @@ def configure_security_domain(
self.config['securitydomain.host'] = hostname
self.config['securitydomain.httpport'] = port
self.config['securitydomain.httpsadminport'] = secure_port
self.config['securitydomain.httpsagentport'] = secure_port

def create_security_domain(self, name=None, as_current_user=False):

Expand Down
3 changes: 3 additions & 0 deletions base/server/upgrade/11.5.0/01-RemoveUnusedParams.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ def upgrade_subsystem(self, instance, subsystem):
logger.info('Removing securitydomain.httpseeport')
subsystem.config.pop('securitydomain.httpseeport', None)

logger.info('Removing securitydomain.httpsagentport')
subsystem.config.pop('securitydomain.httpsagentport', None)

subsystem.save()

0 comments on commit aa8e690

Please sign in to comment.