-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5818 from jkonecny12/master-fix-27938
Use proxy server also for FTP .treeinfo download
- Loading branch information
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, | ||
|