drivers: Fix log message when the STS policy uses the same port as configured.

This commit is contained in:
Valentin Lorentz 2021-06-02 16:51:09 +02:00
parent a4758146d8
commit aaca81c5b9
1 changed files with 5 additions and 2 deletions

View File

@ -113,8 +113,11 @@ class ServersMixin(object):
network.expireStsPolicy(server.hostname)
return server
log.info('Using STS policy: changing port from %s to %s.',
server.port, policy['port'])
if server.port == policy['port']:
log.info('Using STS policy, port %s', server.port)
else:
log.info('Using STS policy: changing port from %s to %s.',
server.port, policy['port'])
# Change the port, and force TLS verification, as required by the STS
# specification.