Skip to content

Commit

Permalink
Merge pull request #567 from stackhpc/zed_2063434
Browse files Browse the repository at this point in the history
kolla_url: port is a string
  • Loading branch information
mnasiadka authored Jun 19, 2024
2 parents 7cb6906 + 8621975 commit 061359e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kolla_ansible/kolla_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def kolla_url(fqdn, protocol, port, path='', context='url'):
"""

fqdn = put_address_in_context(fqdn, context)
port = int(port)

if ((protocol == 'http' and port == 80) or
(protocol == 'https' and port == 443) or
Expand Down

0 comments on commit 061359e

Please sign in to comment.