Merge "Fix URLs"

This commit is contained in:
Zuul 2018-11-13 17:44:58 +00:00 committed by Gerrit Code Review
commit b7556bd89e
1 changed files with 2 additions and 2 deletions

View File

@ -24,10 +24,10 @@ import uuid
_PROXY_SERVERS = {
'http':
os.getenv('HTTP_PROXY',
os.getenv('http_proxy', 'http://one.proxy.att.com:8888')),
os.getenv('http_proxy', 'http://proxy.example.com')),
'https':
os.getenv('HTTPS_PROXY',
os.getenv('https_proxy', 'https://one.proxy.att.com:8888'))
os.getenv('https_proxy', 'https://proxy.example.com'))
}