Skip to content

Commit

Permalink
Merge pull request #5819 from jkonecny12/rhel-9-fix-27938
Browse files Browse the repository at this point in the history
RHEL-9: Use proxy server also for FTP .treeinfo download
  • Loading branch information
M4rtinK authored Aug 14, 2024
2 parents 52614ba + 2233267 commit d05f067
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyanaconda/payload/dnf/payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,8 @@ def _refresh_install_tree(self, data: RepoConfigurationData):
try:
proxy = ProxyString(proxy_url)
proxies = {"http": proxy.url,
"https": proxy.url}
"https": proxy.url,
"ftp": proxy.url}
except ProxyStringError as e:
log.info("Failed to parse proxy for _getTreeInfo %s: %s",
proxy_url, e)
Expand Down

0 comments on commit d05f067

Please sign in to comment.