Skip to content

Commit

Permalink
Handle int type conf key for dynaconf ipv6 migration (#15630)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare committed Jul 11, 2024
1 parent b7d8d0e commit a104d42
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions robottelo/utils/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def is_ipv4_url(text):

def ipv6_translator(settings_list, setting_major, data):
"""Translates the hostname containing IPv4 to IPv6 and updates the settings object"""
setting_major = list(map(str, setting_major))
dotted_settings = '.'.join(setting_major)
for _key, _val in settings_list.items():
if is_ipv4_url(_val):
Expand Down

0 comments on commit a104d42

Please sign in to comment.