This patch set sanitizes and changes the default proxy URLs.

Change-Id: Ibaeb501b59eeea8427fa812078236cfc4fe39623
Signed-off-by: Tin Lam <tin@irrational.io>
This commit is contained in:
Tin Lam 2018-11-09 10:25:39 -06:00
parent d7740b0f40
commit 2a0e1ac1d4
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'))
}