-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use proxy server also for FTP .treeinfo download
We missed ftp prefix in the list of schemes. Resolves: RHEL-27938 (cherry picked from commit a203b75)
- Loading branch information
1 parent
407af17
commit ec589a3
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -419,7 +419,8 @@ def test_load_data_proxy(self, session_getter): | |
headers={"user-agent": "anaconda (anaconda)/bluesky"}, | ||
proxies={ | ||
'http': 'http://user:[email protected]:3128', | ||
'https': 'http://user:[email protected]:3128' | ||
'https': 'http://user:[email protected]:3128', | ||
'ftp': 'http://user:[email protected]:3128' | ||
}, | ||
verify=True, | ||
cert=None, | ||
|